// JavaScript Document

$(document).ready(function() {

	
	
$("#menu").children('ul').children('li').hoverIntent(
											
		
function() { 
	if($(this).children('a').attr('class') != "active")
	{
		
		background=$(this).attr('class')+"-i.gif";
		if($(this).attr('class') == "maladies")
		{
			valWidth = "164px";	
			valTop = "-3px"
		}
		if($(this).attr('class') == "parodontiste")
		{
			valWidth = "162px";	
			valTop = "-3px"
		}
		if($(this).attr('class') == "equipement")
		{
			valWidth = "162px";	
			valTop = "-3px"
		}
		if($(this).attr('class') == "joindre")
		{
			valWidth = "166px";	
			valTop = "-2px"
		}
		
		$(this).children('a').css("display",'none').fadeIn('fast').css('position','absolute').css("width",valWidth).css('height','57px').css('top',valTop)
		$(this).children('a').css('background','url(images/'+background+')')
	}
},
			
			
function() { 
	if($(this).children('a').attr('class') != "active")
	{
		background=$(this).attr('class')+".gif";				
		
		$(this).children('a').fadeIn('fast').css('position','absolute').css("width",'161px').css('height','42px').css('top','0px')
		$(this).children('a').css('background','url(images/'+background+')')
	}
}
		
	);



});
