/* Ce script est la propriete de Sebastien Patron | patron_sebastien@yahoo.fr */
$(document).ready(function () {	
	$('#desc_liens').hide(); 
	$('#logo_tousenfete a,#bloc_pied a,.bloc_evenement a,.bloc_top_nav a,.bloc_top_nav2 a,#adherer a,#newsletter a,#annonce_sup a,.global_admin a,#topnav a').each( function() {
	    var $this = $(this);
	    $this.data('title',$this.attr('title'));
	    $this.removeAttr('title');
	});
    $('#logo_tousenfete a,#bloc_pied a,.bloc_evenement a,.bloc_top_nav a,.bloc_top_nav2 a,#adherer a,#newsletter a,#annonce_sup a,.global_admin a,#topnav a').hover(function(){
		var $this = $(this);
		var title = $this.data('title');
		$('div#annonce marquee').trigger('stop');
		$('#annonce').stop(true, true).hide();
		$('#desc_liens').stop(true, true).show().text(title); 
    },function(){
	    $('#desc_liens').stop(true, true).hide();	
		$('#annonce').stop(true, true).delay(1000).show();
		$('div#annonce marquee').trigger('start');
	});
});
