
var flashvars = {
  test: "hello"
};

var params = {
  menu: "false",
  swliveconnect: "true",
  wmode :"transparent",
  allowscriptaccess:"always"
};

var attributes = {
  id: "contentFlash",
  name: "contentFlash"
};

var attributesMenu = {
  id: "menuFlash",
  name: "menuFlash"
};

var swapped = false;

dataWait = '<div style="width:900; height:440px;text-align:center;"><img src="img/loading.gif" alt="Loading" /></div>';

function colorTo (color){	
	
	$("#all").animate( { backgroundColor: color}, 1000, "swing");
	
}

function prdScheda (id_prodotto){	

	swapped = true;
	$("#slider").animate({"left":-900 + "px"}, 500, "swing", chargeDataPrd(id_prodotto));
	
}

function indietro (){
	
	swapped = false;
	$("#slider").animate({"left":0 + "px"}, 500, "swing");
	
}

function callFlash(section, id_linea){
	
	var obj = swfobject.getObjectById("contentFlash");
	
	if (swapped) { $("#slider").animate({"left":0 + "px"}, 500, "swing", function(){ if (obj) obj.menuCall(section, id_linea); }); swapped = false;}
	else if (obj) obj.menuCall(section, id_linea);
	
}

function chargeDataPrd (id_prodotto){
	
	$('#cntScheda').html(dataWait);
	$("#cntScheda").load("getHTML/schedaPrd.php?id_prodotto="+id_prodotto);
	
}

