$(document).ready(function() {
	hauteurDiv = $('.grid_6:first').height();
	$('.grid_6:first').append('<div class="sep" style="height:'+hauteurDiv+'px"></div>');
	$('.affichArticle').click(function() {
		var idArt = $(this).attr('id');
		$('#ajaxActu').load('article.php', 'id='+idArt).hide().fadeIn('slow');
		$('#titreActu').load('titre.php', 'id='+idArt).hide().fadeIn('slow');
	});
	
	if($('.scroll').size()>0)
	{
		$('.scroll').jScrollPane({showArrows:true, scrollbarWidth: 14, arrowSize: 30, scrollbarMargin: 0, dragMinHeight: 60, dragMaxHeight: 60});
	}
});

