$(document).ready(function(){
	resizediapo();
	$(window).resize(function(){
				resizediapo();
	});
	var so = new SWFObject("photo.swf", "photo", "100%", "100%", "10", "#FFFFFF");			
	so.addParam("scale", "exactfit");
	so.addParam("wmode", "transparent");
	so.useExpressInstall('expressinstall.swf');
	so.write("badeauPhoto");
	
});
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);
}


