//Random images onload
function changeStyle_onload()
{
	random_number= Math.floor(Math.random()* 3+1 );
	if (random_number==1) {
		image="url(images/sfondi/sfondo_fabi.jpg)";
	}
	if (random_number==2) {
		image="url(images/sfondi/sfondo_fabi2.jpg)";
	}
	if (random_number==3) {
		image="url(images/sfondi/sfondo_fabi3.jpg)";
	}
	document.body.style.backgroundImage=image;
}		

// Change background image onclick
function changeStyle_onclick(name){
	image="url(images/"+name+")";
	document.body.style.backgroundImage=image;
}

function change_image(name,address){
	$("#foto_corrente").remove();//nascondo la foto attuale
	$("#foto_shop").addClass("loading");//mostro la gif loading
	var myImage= new Image();
	myImage.src="images/shops/"+name+".jpg";
	myImage.onload=display;
	function display(){
		$("#foto_shop").html("<a target='_blank' href='images/shops/"+name+"-zoom.jpg' id='foto_corrente' title='Fabi Shoes'><img src='images/shops/"+name+".jpg' id='image_shop'/></a>");
		//$("#image_shop").show();
		$("#foto_shop").removeClass("loading");//
	}
}

function insertHtml(url,div){
	$(div).addClass("loading");
	$(div).load(url);
	$(div).fadeIn(3000);
	$(div).removeClass("loading");
}