//Efectos y acciones

//Transicion de color para los videos
function bg_cambia(ele){
	$$(ele).each(function(element){
		var bgchange= new Fx.Tween(element);	
		element.addEvent('mouseenter', function() {this.set('tween',  {duration: 500}).tween('background-color','#FFF', '#EEE');});
		element.addEvent('mouseleave', function() {this.set('tween',  {duration: 500}).tween('background-color','#EEE', '#FFF');});
	});
}

//Funcion numero random
function randRange(lowVal,highVal) {
        return Math.floor(Math.random()*(highVal-lowVal+1))+lowVal;
}

function intervalo(){
	var dom="http://www.consorcio.cl/"
	window.location = dom
}

//function para formulario
function oculta(){
	$$('#contactar_ejecutiva').set('height', 0);
	$$('.ejecutiva_btn a').each(function(a){
			a.set('href','#')
			a.addEvent('click', function(){
				$$('.ejecutiva_btn').set('morph', {duration: 'short', transition: 'quad:out'});
				$$('.ejecutiva_btn').morph({height: 0, opacity: 0, overflow: 'hidden'});
					$$('#contactar_ejecutiva').set('morph', {duration: 'long', transition: 'quad:out'});
					$$('#contactar_ejecutiva').morph({height: 374, opacity: 1, overflow: 'hidden'});
				return false;
			});	
		});
	}

function openExternal(){
    if(!document.getElementsByTagName) return;
    var anchors = document.getElementsByTagName('a');
    for(var i = 0; i < anchors.length; i++){
        var thisAnchor = anchors[i];
        if(thisAnchor.getAttribute('href') && thisAnchor.getAttribute('rel') == 'external'){
            thisAnchor.target = '_blank';
        }
    }
}
		
		
		window.addEvent('domready', function() {

		oculta();
		openExternal();
		
		//descomentar 3 lineas siguiente para activar delay de 30 segundos para ir a home de consorcio

		//	if ( document.getElementById('teaser') ){
		//			setTimeout('intervalo()', 30000)
		//	}
		
		bg_cambia('#videos_list li');
		$$('#videos_list li').addEvent('click', function(){
		switch (this.id) {
			case "sv_manuel_bustamante":
			$('video_show').set('html', '<embed id="mymovie" width="300" height="200" flashvars="file=sv_manuel_bustamante.flv&autostart=true&controlbar=none&viral.callout=none&viral.onpause=true" quality="high" name="mymovie" style="" src="../img/videos/player.swf" type="application/x-shockwave-flash"/>');
			break;

			case "sv_felipe_gonzalez":
			$('video_show').set('html', '<embed id="mymovie" width="300" height="200" flashvars="file=sv_felipe_gonzalez.flv&autostart=true&controlbar=none&viral.callout=none&viral.onpause=true" quality="high" name="mymovie" style="" src="../img/videos/player.swf" type="application/x-shockwave-flash"/>');
			break;

			case "sv_luis_sinuela":
			$('video_show').set('html', '<embed id="mymovie" width="300" height="200" flashvars="file=sv_luis_sunuela.flv&autostart=true&controlbar=none&viral.callout=none&viral.onpause=true" quality="high" name="mymovie" style="" src="../img/videos/player.swf" type="application/x-shockwave-flash"/>');
			break;

			case "rv_jorge_figueroa":
			$('video_show').set('html', '<embed id="mymovie" width="300" height="200" flashvars="file=rv_jorge_figueroa.flv&autostart=true&controlbar=none&viral.callout=none&viral.onpause=true" quality="high" name="mymovie" style="" src="../img/videos/player.swf" type="application/x-shockwave-flash"/>');
			break;

			case "rv_margarita_campana":
			$('video_show').set('html', '<embed id="mymovie" width="300" height="200" flashvars="file=rv_margarita_campana.flv&autostart=true&controlbar=none&viral.callout=none&viral.onpause=true" quality="high" name="mymovie" style="" src="../img/videos/player.swf" type="application/x-shockwave-flash"/>');
			break;

			case "rv_maria_undurraga":
			$('video_show').set('html', '<embed id="mymovie" width="300" height="200" flashvars="file=rv_maria_undurraga.flv&autostart=true&controlbar=none&viral.callout=none&viral.onpause=true" quality="high" name="mymovie" style="" src="../img/videos/player.swf" type="application/x-shockwave-flash"/>');
			break;

			case "sa_gerardo_guerra":
			$('video_show').set('html', '<embed id="mymovie" width="300" height="200" flashvars="file=sa_gerardo_guerra.flv&autostart=true&controlbar=none&viral.callout=none&viral.onpause=true" quality="high" name="mymovie" style="" src="../img/videos/player.swf" type="application/x-shockwave-flash"/>');
			break;

			case "sa_viviana_pinonez":
			$('video_show').set('html', '<embed id="mymovie" width="300" height="200" flashvars="file=sa_viviana_pinonez.flv&autostart=true&controlbar=none&viral.callout=none&viral.onpause=true" quality="high" name="mymovie" style="" src="../img/videos/player.swf" type="application/x-shockwave-flash"/>');
			break;

			case "sa_delfina_alonso":
			$('video_show').set('html', '<embed id="mymovie" width="300" height="200" flashvars="file=sa_delfina_alonso.flv&autostart=true&controlbar=none&viral.callout=none&viral.onpause=true" quality="high" name="mymovie" style="" src="../img/videos/player.swf" type="application/x-shockwave-flash"/>');
			break;

			}

		});

	
});
