$(document).ready(

	function(){			
			$(".servicio").hover(function(){
						$(this).css({"background-color" : "#FFFCA1"});				
				},
				function(){
						$(this).css({"background-color" : "transparent"});
					}				
				);
			
				$("#primary ul li ul li").hover(function(){
									if(!$.browser.msi){	$(this).children("a").stop().animate({paddingLeft: '15px'},100);}
									$(this).children("a").css({"color" : "white"});
									$(this).css({"background-color" : "#F27813"});				
				}, 
				function(){
										if(!$.browser.msi){$(this).children("a").stop().animate({paddingLeft: '-15px'},550);}	
										$(this).children("a").css({"color" : "#222"});
										$(this).css({"background-color" : "#FFF70E"});				
				});


});

