
$(document).ready(function(){

	$('.cliquable').mouseover(function(){
		$(this).toggleClass('blocCentreSurvoll');

	});

	$('.cliquable').mouseout(function(){
		$(this).toggleClass('blocCentreSurvoll');
	});

	$('.cliquable').click(function(){
		lienCible = $(this).children('.titreActu').children('a').attr('href');
		//alert(lienCible);
		//window.location.href = 'index.php?article'+lienCible;
		window.location.href = lienCible;
	});

/*
	$('*').click(function(){
		alert($(this).attr('name')+' '+$(this).attr('class')+' '+$(this).attr('id'));
	});
*/

});
