(function($) {
	$(document).ready(function() {

		function showSecondLevel(){
			var iconName = $(this).find("img").attr("src");
			var origen = iconName.split(".")[0];
			
			$(this).children(".secondDropdown").slideDown();
			$(this).addClass("hover");
			
			$(this).find("img").attr({src: "" + origen + "-over.gif"});
		}
		function hideSecondLevel(){ 
			var iconName = $(this).find("img").attr("src");
			var origen = iconName.split("-over.")[0];
			
			$(this).children(".secondDropdown").slideUp();
			$(this).removeClass("hover");
			
			$(this).find("img").attr({src: "" + origen + ".gif"});
		}

		var config = {
	     	sensitivity: 5,
	     	interval: 100,
	     	over: showSecondLevel,
	     	timeout: 400,
	     	out: hideSecondLevel
		};

		$("#Menu1 li.level1").hoverIntent(config);
	})
})(jQuery);