$(document).ready(function() {
		w = screen.width;
		if(w < 1280){
			w = 1024;}
		else if(w >= 1280 && w < 1440){
			w = 1280;}
		else { w = 1440;}
			h_div = w*(417/1440);
			h_div2 = h_div+24;
			l = ((w-880)/2)+803;
			top_ind = (50*w)/1440;
			top_fecha_info = -280+top_ind;
			
		$(".overmenu").hover(function() {
				if($(this).next("ul").css('display')=="none")
				{
					$("li ul").hide();
					$(this).next("ul").fadeIn(1000);
				}
			},
			function(){
			}
		);

		$("#brenda").hover( 
			function(){
				$("#brenda").css("background-color","#1a1a1a");
				$("#brenda").css("color","#bbcc53");
				$("#creditos").css("visibility","visible");
			},
			function(){
				$("#brenda").css("background-color","#000000");	
				$("#brenda").css("color","#FFFFFF");
				$("#creditos").css("visibility","hidden");
			}
		 )
		
		$("#creditos").hover( 
			function(){
				$("#brenda").css("background-color","#1a1a1a");
				$("#brenda").css("color","#bbcc53");
				$("#creditos").css("visibility","visible");
			},
			function(){
				$("#brenda").css("background-color","#000000");	
				$("#brenda").css("color","#FFFFFF");
				$("#creditos").css("visibility","hidden");
			}
		 )
		
		$("#fibra").css('color', '#ffffff');
		
	});