jQuery(document).ready(function(){
	ImagenesEncabezado = {
		Imgs: '',
		nImgs: 0,
		ContadorCargadas: 0,
		IniciarCarga: function  () {
			Imgs = jQuery("#encabezado ul img");
			ImagenesEncabezado.nImgs = Imgs.length;
			ImagenesEncabezado.ContadorCargadas = 0;
			Imgs.each(function () {
				var i = new Image();
				src = jQuery(this).attr('src');
				jQuery(i)
					.load( function() {
						ImagenesEncabezado.ImagenCargada();
					})
					.attr('src',src);

			});
		},
		ImagenCargada: function () {
			ImagenesEncabezado.ContadorCargadas++;
			if (ImagenesEncabezado.ContadorCargadas>=ImagenesEncabezado.nImgs) {
				setTimeout("ImagenesEncabezado.AbrirCortina()",1200);
			}


		},
		AbrirCortina: function  () {
			jQuery("#Cortina").fadeOut(800);
			if(window.location.pathname!="/contacto/") {
				jQuery("#encabezado ul").crossfade();
			}
		}
	};
	ImagenesEncabezado.IniciarCarga();
	jQuery("#menu-izq a").hover(
		function() {
			if(window.location.pathname!="/contacto/") {
				jQuery(this).stop(false, true).animate({textIndent: '45px'}, {duration: 300, easing: 'easeOutQuad'});
			} else {
				jQuery(this).stop(false, true).animate({textIndent: '45px'}, {duration: 300});
			}
		},
		function() {
			if(window.location.pathname!="/contacto/") {
				jQuery(this).stop(false, true).animate({textIndent: '32px'}, {duration: 300, easing: 'easeInQuad'});
			} else {
				jQuery(this).stop(false, true).animate({textIndent: '32px'}, {duration: 300});
			}
		}
	);
	jQuery("#menu-sup a").hover(
		function() {
			if(window.location.pathname=="/contacto/") {
				jQuery(this).css('color','#F2A100');
			} else {
				jQuery(this).stop(false, true).animate({color:'#F2A100' }, {duration: 200 });
			}
		},
		function() {
			if(window.location.pathname=="/contacto/") {
				jQuery(this).css('color','#00A1F2');
			} else {
				jQuery(this).stop(false, true).animate({color:'#00A1F2' }, {duration: 800 });
			}
		}
	);
	jQuery("#mapaky").colorbox({href: 'http://maps.google.cl/maps?hl=es&amp;source=hp&amp;ie=UTF8&amp;q=orrego+luco+054,+providencia&amp;fb=1&amp;gl=cl&amp;hnear=&amp;cid=0,0,18266267678810240019&amp;ei=1csmS9HkCI61tgfRxtXeCw&amp;ved=0CAoQnwIwAA&amp;hq=orrego+luco+054,+providencia&amp;ll=-33.421126,-70.613229&amp;spn=0.009403,0.018218&amp;z=16&amp;iwloc=A&amp;output=embed', iframe: 'yes', width: '850px', height: '525px'});
	jQuery("#mapayt").colorbox({href: 'http://maps.google.cl/maps?f=q&amp;source=s_q&amp;hl=es&amp;geocode=&amp;q=Parcela+15.+Parcelaci%C3%B3n+Santa+Rosa.+Lampa&amp;sll=-33.422093,-70.61162&amp;sspn=0.004612,0.010568&amp;gl=cl&amp;ie=UTF8&amp;hq=Parcela+15.+Parcelaci%C3%B3n+Santa+Rosa.&amp;hnear=Lampa&amp;cid=16445713646126711295&amp;ll=-33.162846,-70.609131&amp;spn=0.603547,1.165924&amp;z=10&amp;iwloc=A&amp;output=embed', iframe: 'yes', width: '850px', height: '525px'});

});
jQuery(".videos").colorbox({iframe:true, innerWidth:640, innerHeight:385});