$(document).ready(function(){
	$('#content-wrap').css({opacity:0,display:'none'});
	$('#body').animate({backgroundColor:'#fff'},500);
	$('#banners').fadeIn(1000);
	$('#content-wrap').slideDown(1000);
	$('#content-wrap').animate({opacity:1},1000);
	
	$('#menu li a, #logo a').each(function(i) {
		if ($(this).attr('rel').length == 0) {
			$(this).attr('rel', $(this).attr('href'));
			$(this).attr('href', 'javascript: void(0);');
			$(this).click(function() {
				destino=$(this).attr('rel');
				if (destino=="mailto:presupuestos@quintaimpresion.com")
					window.location.href=destino;
				else
				{
					if (destino=="../proyectos")
						$('#banners').animate({height:'409px'},1000);
					else
						$('#banners').animate({height:'309px'},1000);
					$('#banners img').animate({opacity:0},1000);
					$('.banner').fadeOut(1000);
					$('.banner_sobre').fadeOut(1000);
					$('#dcha').fadeOut(1000);
					$('#body').animate({backgroundColor:'#fff'},1000);
					$('#content-wrap').slideUp(1000,function() {
						window.location.href=destino;
					});
				}
			});
		}
	});
	
	$('#banners').cycle({
		fx: 'scrollLeft',
		easing: 'easeOutQuint',
		timeout:5000
	});
	
	$('.banner').hover(function(){
		$(this).find('.banner_sobre').stop().animate({opacity:'0.75'},500);
    },function(){
		$(this).find('.banner_sobre').animate({opacity:'0'},800);
    });

	$('.banner').click(function(){
		if ($(this).is('.presupuesto'))
			window.location.href='mailto:presupuestos@quintaimpresion.com';
		else
		{
			if ($(this).is('.dcha'))
			{
				/*if ($(this).is('.presupuesto'))
					destino='mailto:presupuestos@quintaimpresion.com';*/
				if ($(this).is('.newsletter'))
					destino='../preguntas';
				if ($(this).is('.calendario'))
					destino='../calendario';
			}
			else
			{
				destino=$(this).attr('class').replace('banner ','');
				$('#banners').animate({height:'309px'},1000);
			}
		
			$('#banners img').animate({opacity:0},1000);
			$('.banner').fadeOut(1000);
			$('.banner_sobre').fadeOut(1000);
			$('#dcha').fadeOut(1000);
			$('#content-wrap').slideUp(1000,function() {
				window.location.href=destino;
			});
		}
    });
});
