<!--
$(function(){
	$("ul#TreatmentMenuTop li a img").before("<span></span>");
	
	/*$("ul#TreatmentMenuTop").children("li").each(function()
	{
		$(this).children("a").children("span").css({backgroundPosition: "-128px 0px"})
		$(this).children("a")
				   .mouseover(function(){
						$(this).children("span").stop().animate({backgroundPosition:"(0 0)px"}, {duration:200,easing:"easeInExpo"})
				   })
				   .mouseout(function(){
					  $(this).children("span").stop().animate({backgroundPosition:"(-128 0)px"}, {duration:200,easing:"easeOutExpo",complete:function(){
						 $(this).css({backgroundPosition:"-128px 0px"})
					  }})
				   })
	});*/
	$("ul#WhiteMenuTop").children("li").each(function()
	{
		$(this).children("a")
				   .css( {backgroundColor:"#cde8e5"} )
				   .mouseover(function(){
					  $(this).stop().animate({backgroundColor:"#44d3c8"}, {duration:200,easing:"easeInExpo"})
				   })
				   .mouseout(function(){
					  $(this).stop().animate({backgroundColor:"#cde8e5"}, {duration:200,easing:"easeOutExpo",complete:function(){
						 $(this).css({backgroundColor:"#cde8e5"})
					  }})
				   })
	})
});
// -->