function showGallery(gallery, reinit1, reinit2){
	current_gallery = gallery;
	$("#gallery_button_" + gallery).css({'text-decoration':'none'});
	$("#gallery_button_" + reinit1).css({'text-decoration':'underline'});
	$("#gallery_button_" + reinit2).css({'text-decoration':'underline'});
	$("#oxfam_gallerie").html(getURLGallery(gallery));
}
function showGalleryRetrospective(gallery, reinit1){
	current_gallery = gallery;
	$("#gallery_button_" + gallery).css({'text-decoration':'none'});
	$("#gallery_button_" + reinit1).css({'text-decoration':'underline'});
	$("#oxfam_gallerie").html(getURLGallery(gallery));
}
function getURLGallery(gallery){
	/*
	return "<object width='1067' height='630'>" +
	"<param name='movie' value='flash/gallery.swf?xml=" + gallery + "'></param>" +
	"<param name='allowFullScreen' value='true'></param>" +
	"<param name='allowscriptaccess' value='always'></param>" +
	"<param name='xml' value='" + gallery + "'></param>" +
	"<embed src='flash/gallery.swf?xml=" + gallery + "' type='application/x-shockwave-flash' allowscriptaccess='always' allowfullscreen='true' width='1067' height='630'></embed>" +
"</object>";
*/
	return "<object width='970' height='570'>" +
	"<param name='movie' value='flash/gallery.swf?xml=" + gallery + "'></param>" +
	"<param name='allowFullScreen' value='true'></param>" +
	"<param name='allowscriptaccess' value='always'></param>" +
	"<param name='xml' value='" + gallery + "'></param>" +
	"<embed src='flash/gallery.swf?xml=" + gallery + "' type='application/x-shockwave-flash' allowscriptaccess='always' allowfullscreen='true' width='970' height='570'></embed>" +
"</object>";
}