var pageHeight = 0;

$(document).ready(function() {

	if($.browser.opera){
		$('#menu-principal li').css({'padding-top': '25px', 'padding-bottom': '25px'});
	}
	
	//$('.submenu_bg').fadeTo(0,0.97);
	
	//$('#menu-container li ul:first').hide();
	
	if ($('#galeria li').length > 1) {
		$('#galeria li:not(.selected)').fadeTo(0,0.2);
	}
	
	if ($('#galeria img').each > 1) {
		$('#galeria li:not(.selected)').fadeTo(0,0.2);
	}
	
	$('#galeria img').each(function(index) {
		if ($(this).height() > pageHeight ) {
			pageHeight = $(this).height();
		}
	});
	
	if ($('#contenido').height() < pageHeight) {
		$('#contenido').css('height', pageHeight);
	}
	
	
	$('.promo .open').click(function() {
		var oldH = $('.promo .texto').height();
		var newH = $('.promo .texto_new').height();
		var h = $('.promo').height();
		//alert(newH-oldH);
		$('.promo .texto').fadeTo(300, 0, function(){ $(this).hide(); });
		$('.promo .open').parent().fadeTo(200, 0, function(){ $(this).hide(); });
		$('.promo').animate({height: (h+newH-oldH-30) + 'px'}, 400, function() {
			$('.promo .texto_new').fadeTo(200, 1.0);
			$('.promo .close').fadeTo(200, 1.0);
		});
		return false;
	});
	
	$('.promo .close').click(function() {
		var oldH = $('.promo .texto_new').height();
		var newH = $('.promo .texto').height();
		var h = $('.promo').height();
		//alert(newH-oldH);
		$('.promo .texto_new').fadeTo(300, 0, function(){ $(this).hide(); });
		$('.promo .close').fadeTo(200, 0, function(){ $(this).hide(); });
		$('.promo').animate({height: (h-(oldH-newH)+5) + 'px'}, 400, function() {
			$('.promo .texto').fadeTo(200, 1.0);
			$('.promo .open').parent().fadeTo(200, 1.0);
		});
		return false;
	});
	
	
	$('#menu-galeria a').click(function() {
		if(!$(this).hasClass('selected')) {
			var id = $(this).attr('id').split('_');
			var img = $('#'+id[1]);
			var p = img.position();
			$('#galeria').stop().animate({top: -p.top + 'px'}, 400);
			$('#menu-galeria a').removeClass('selected');
			$('#galeria li.selected').removeClass('selected').fadeTo(400,0.2);
			$(this).addClass('selected');
			img.addClass('selected').fadeTo(400,1);
		}
		return false;
	});
	
	
	/*$('#menu-container li').bind("mouseenter mouseleave", function() {
		if ($('ul:first', this).length) {
			//$('ul:first', this).stop(true,true).slideToggle('fast');
			$('ul:first', this).toggle();
		}
	});*/
	
	$('#menu-container li').bind("mouseenter", function() {
		if ($('ul:first', this).length) {
			//alert($('ul:first', this).height());
			var submenu = $('ul:first', this);
			var subMenuHeight = Math.ceil(submenu.children().length/4)*75;
			
			//alert(submenu.children().length/4 +" - "+subMenuHeight);
				
			//$('ul:first', this).toggle();
			//$('#menu-principal').stop(true,true).animate({height: 60+$('ul:first', this).height()}, 200);
			//submenu.stop(true,true).animate({height: subMenuHeight}, 400);
			submenu.fadeTo(400,1);
			$('.submenu_bg').stop().animate({height: subMenuHeight+20}, 400);
		}
	});
	
	$('#menu-container li').bind("mouseleave", function() {
		if ($('ul:first', this).length) {
			var submenu = $('ul:first', this);
			/*submenu.stop(true,true).animate({height: 0}, 200, function() {
				// Animation complete.
				$(this).hide();
			});*/
			submenu.hide();
			$('.submenu_bg').stop().animate({height: 0}, 400);
		}
	});
	
	// Sliders
	$('#lista-news ul').cycle({ 
		fx:     'scrollVert',
		speed:  'fast',
		timeout: 6000
	});
	
});
