function getViewportSize() {
	size = [$(window).width(), $(window).height() ];
	return size;
}
function createFullBrowserFlash() {
	$("html").css({ height:"100%" });
	$("body").css({ height:"100%", backgroundColor:"#999999" });
	$("#flashdiv").css({ width:"100%", height:"100%", minWidth:"980px", minHeight:"600px" });
$(window).resize(function(){
	var size = getViewportSize();
	$("#flashdiv").css({ width: size[0] < 980 ? "980px" : "100%" });
	$("#flashdiv").css({ height: size[1] < 600 ? "600px" : "100%" });
	$("#container-general").css({ top: size[1] < 600 ? "0" : Math.floor((size[1]-600)/2) });
	var posContainer = $("#container-contenu").offset();
	ContainerX = posContainer.left;
	ContainerY = posContainer.top;
});
	$(window).resize();
}
function hideContent() {
	$("#container-general").slideUp();
}
function showContent() {
	$("#container-general").slideDown();
}

function writeFlash(nom_flash,rub) {
	$('#flashdiv').flash({ 
		src: '../../../templates/1/medias/flash/'+nom_flash+'',
		width: "100%",
		height: "100%",
		wmode: 'transparent',
		scale: 'noscale',
		salign: 'tl',
		flashvars: {
			img_fond:"../../../templates/1/medias/flash/fonds/"+rub+".jpg"
		}
	},
	{
		version: 8
	});
}
function writeFlash2(nom_flash,rub){
	switch(rub){
		case "accueil":
			thumb1 = "chateau_1_small.jpg";
			thumb2 = "escaliers_1_small.jpg";
			thumb3 = "jardins_1_small.jpg";
			thumb4 = "reunion_1_small.jpg";
			img1 = "chateau_1.jpg";
			img2 = "escaliers_1.jpg";
			img3 = "jardins_1.jpg";
			img4 = "reunion_1.jpg";
			break;
		case "chateau":
			thumb1 = "exterieur_1_small.jpg";
			thumb2 = "casque_1_small.jpg";
			thumb3 = "exterieur_2_small.jpg";
			thumb4 = "manuscrits_1_small.jpg";
			img1 = "exterieur_1.jpg";
			img2 = "casque_1.jpg";
			img3 = "exterieur_2.jpg";
			img4 = "manuscrits_1.jpg";
			break;
		case "entreprises":
			thumb1 = "reunion_1_small.jpg";
			thumb2 = "verres_1_small.jpg";
			thumb3 = "dejeuner_1_small.jpg";
			thumb4 = "meeting_1_small.jpg";
			img1 = "reunion_1.jpg";
			img2 = "verres_1.jpg";
			img3 = "dejeuner_1.jpg";
			img4 = "meeting_1.jpg";
			break;
		case "particuliers":
			thumb1 = "dejeuner_1_small.jpg";
			thumb2 = "dejeuner_2_small.jpg";
			thumb3 = "exterieur_1_small.jpg";
			thumb4 = "mariee_1_small.jpg";
			img1 = "dejeuner_1.jpg";
			img2 = "dejeuner_2.jpg";
			img3 = "exterieur_1.jpg";
			img4 = "mariee_1.jpg";
			break;
		case "visites":
			thumb1 = "piano_1_small.jpg";
			thumb2 = "chambre_1_small.jpg";
			thumb3 = "chambre_2_small.jpg";
			thumb4 = "cuisines_1_small.jpg";
			img1 = "piano_1.jpg";
			img2 = "chambre_1.jpg";
			img3 = "chambre_2.jpg";
			img4 = "cuisines_1.jpg";
			break;
	}
	$('#conteneur-droit-bandeau-flash').flash({ 
		src: '../../../templates/1/medias/flash/'+nom_flash+'',
		width: "100%",
		height: "100%",
		wmode: 'transparent',
		scale: 'noscale',
		salign: 'tl',
		flashvars: {
			home:true,
			rel_path:"../../../templates/1/medias/flash/slides/"+rub+"/",
			thumb_1:thumb1,
			thumb_2:thumb2,
			thumb_3:thumb3,
			thumb_4:thumb4,
			img_1:img1,
			img_2:img2,
			img_3:img3,
			img_4:img4
		}
	},
	{
		version: 8
	});
}

function writeVideo(nom_flv) {
	$('#video_flash').flash({ 
		src: '../../../templates/1/medias/flash/lecteur-video.swf',
		width: "480",
		height: "308",
		//wmode: 'transparent',
		scale: 'noscale',
		salign: 'tl',
		flashvars: {
			nomControleur:"/templates/1/medias/flash/ClearOverPlaySeekMute.swf",
			nomVideo:"/templates/1/medias/flash/"+nom_flv+""
		}
	},
	{
		version: 8
	});
}


