$(function() {
	$("#menu ul").hover(function() {
		// ...
	});
	$('.showSpan').bind("mouseover", function(){
		$(this).children('span').animate({opacity: 'show'}, "slow", "linear");
	});
	$('.showSpan').bind("mouseout", function(){
		$(this).children('span').hide();
	});
	if ($('span#date_bloc').size() != 0) {
		$(this).addClass("rounded");
	}
	// Le slide sur l index
	var slideIndex = $('div#slider1').size();
	if (slideIndex != 0) {
		$('#slider1').s3Slider({
			timeOut: 5000
		});
	}
	$(' a[title]').mouseover(function(e) {	
		var tip = $(this).attr('title');	
		$(this).attr('title','');
		$(this).append('<div id="tooltip"><div class="tipHeader"></div><div class="tipBody">' + tip + '</div><div class="tipFooter"></div></div>');		
		// position
		//$('#tooltip').css('top', e.pageY + 10 );
		//$('#tooltip').css('left', e.pageX + 0 );
		// fade
		$('#tooltip').fadeIn('90');
		$('#tooltip').fadeTo('50',0.75);
	}).mouseout(function() {
		$(this).attr('title',$('.tipBody').html());
		$(this).children('div#tooltip').remove();	
	});
});

//~ .mousemove(function(e) {	
		//~ $('#tooltip').css('top', e.pageY + 10 );
		//~ $('#tooltip').css('left', e.pageX + 0 );		
	//~ })
