	
$(document).ready(function(){
	resizediapo();
	$(window).resize(function(){
				resizediapo();
	});
	
});
function resizediapo(){
	var width = $(window).width();
	var height = $(window).height();
	var widthImg = 1280; 	
	var heightImg = 459; 			
	var h = (heightImg*width)/widthImg;
	$('#badeauPhoto').width(width);
	$('#badeauPhoto').height(h);
	
	}

function getFlashMovieObject(movieName){
if (window.document[movieName]){
return window.document[movieName];
}
if (navigator.appName.indexOf("Microsoft Internet")==-1){
if (document.embeds && document.embeds[movieName])
return document.embeds[movieName];
}
else // if (navigator.appName.indexOf(”Microsoft Internet”)!=-1)
{
return document.getElementById(movieName);
}
}

function SendDataToFlashMovie(newPage)
{
var flashMovie=getFlashMovieObject("photo");
flashMovie.sendTextToFlash(newPage);
}
