function swf_accueil(tWidth, tHeight)
{
	document.write('<object type="application/x-shockwave-flash" data="images/accueil/accueil.swf" width="'+tWidth+'" height="'+tHeight+'">\n');
	document.write('<param name="movie" value="images/accueil/accueil.swf" />\n');
	document.write('<param name="wmode" value="transparent" />\n');
	document.write('</object>\n');
}
function fenetre_press(tImg, tNom)
{
	window.open('php/press_grand.php?img='+tImg+'&nom='+tNom,'', 'menubar=no,location=no,resizable=no,scrollbars=yes,status=no,width=880,height=660');
}
function menu_change_sous_menu(tNom, tId, tNb) {
	var i = 1;
	for(i=1; i<=tNb; i++) {
		var menu = document.getElementById(tNom+i)
		if (menu != null) menu.className = 'sous_menu_off';
	}
	document.getElementById(tNom+ tId).className = 'sous_menu_on'; 
	return true;
}
function change_sous_menu(element) {
	if($("#"+element+"1").is(":hidden")) {
		$("#"+element+"1").fadeIn();
	} else {
		$("#"+element+"1").fadeOut();
	}
	return false;
}
