$(document).ready(function(){
	$("#botonera div").mouseenter(function(evento){
		$(this).addClass('sobre');
		
	});
	$("#botonera div").mouseleave(function(evento){
		$(this).removeClass('sobre');
	});
	
	$(".capaInf ul").css({display: "none"});
	
	/*$(".capaInf div").mouseenter(function(evento){
		$(this).find('ul:first').css({visibility: "visible",display: "none"}).fadeTo("slow", 1);
		
	});
	$(".capaInf div").mouseleave(function(evento){
		$(this).find('ul:first').css({visibility: "hidden;"}).fadeTo("slow", 0);
	});*/
	
	$(" .capaInf div ").hover(function(){
	 $(this).find('ul:first').css({visibility: "visible",display: "none"}).fadeTo("slow", 1);
	},function(){
		 $(this).find('ul:first').css({visibility: "hidden"}).fadeTo("slow", 0);;
	});
})
