$(window).load(function(){	/**/
	$("#SECCION_elHombreHaVuelto").load("contenidos.php",
	{seccion: "slideShowFrases.xml", tag: "slideShowFrases"});
	
	$("#home").addClass("selected");
	var activo = "index";
	
	$().UItoTop({ easingType: 'easeOutQuart' });
	
	function alTope(){
		$('body,html').animate({scrollTop: 0}, 100);
			return false;
	}
	
	$('.items_head').mouseenter(function(){
		if ($(this).index() == 3 ){
			$('#subMenuProductos').css({'visibility':'visible'});
		}else{
			$('#subMenuProductos').css({'visibility':'hidden'});
		}
		alTope();
	});
	
	$('#productos').mouseenter(function(){
		$('#subMenuProductos').css({'visibility':'visible'});
		alTope();
	});
	
	$('.subItem').click(function(){
		if(activo != "productos"){
			$(".items_head").removeClass("selected");			
			$("#productos").addClass("selected");
			activo = "productos";
		}	
		alTope();
	});

	
	$('#subMenuProductos').mouseleave(function(){			
	//activo = "afeitado";
	//if (activo=="afeitado"){		
		$('#subMenuProductos').css({'visibility':'hidden'});
		alTope();
	//}	
});

	
	
});	

