/* Elegant menu slider http://www.ilovecolors.com.ar/jquery-sliding-menu */
jQuery(document).ready(function(){
	
	$("#slider li a").hover(
		function(){
			$(this).css("cursor", "pointer");
			$(this).animate({ width: "120px" }, {queue:false, duration:"normal"} );
			$(this).children("span").animate({opacity: "show"}, "fast");
		}, 
		function(){		
			$(this).animate({ width: "60px" }, {queue:false, duration:"normal"} );
			$(this).children("span").animate({opacity: "hide"}, "fast");
		});
});
