// JavaScript Document

function flashMovie(name){
	if(navigator.appName.indexOf("Microsoft") != -1){
		return window[name];
	}else{
		return document[name];
	}
}
function callASfunction(rutaXML){					
		rutaXML='http://multimedia.lacaixa.es/lacaixa/ondemand/obrasocial/video/config/play_'+rutaXML+'.xml';
		flashMovie('flashcontent').changeXML(rutaXML);
		flashOn = false;	
}

var flashOn = false;

function resizeDivFlash(ancho, alto){
	if (flashOn ==false){
		flashOn = true;
		leftNuevo = (ancho - 570)/2;
		$('#carrito').addClass('invisible');
		$('#enlaces').addClass('invisible');
		$('#header').append("<div id='fondoHome' class='transparent'></div>");
		alto= alto-1+35;
		$("#playerHome").animate({
			"margin-left": "-" + leftNuevo + "px",
			width: ancho+"px",
			height: alto+"px" 
			}, 1000, "" , "" );
		$('#flashcontent').attr("wmode", 'transparent');		
	}else{
		if (flashOn == true){
				flashOn = false;
				var navegador = navigator.appName
				if (navegador == "Microsoft Internet Explorer"){
					anchoDiv= "570px";
				}else{
					anchoDiv= "568px";
				}
				$("#playerHome").animate({
					"margin-left": "0", 
					width: anchoDiv,
					height: "246px" 
				}, 1000, "" , "" );
				$("#fondoHome").remove();
				$('#carrito').removeClass('invisible');
				$('#enlaces').removeClass('invisible');
		}
	}
}