//	loc_fonctions.js

//Initalisation des RollOvers
window.addEvent('domready',initDomReady);
window.addEvent('load',initLoad);	
function initDomReady(){
}
function initLoad(){
	
	if (id != 'accueil'){
		selectLink();
		selectLinkSubMenu();
	}
	generateRollOvers();
	/*
	if (!Browser.Engine.trident) {
		gererResize();
	}
	
	window.addEvent('resize',function(e){
		gererResize();
	});
	*/
}

//	Flash Embedding	///////////////////////////////////////////////////////////////////////////////	
function embedFlash(pFlashData){
	swfobject.embedSWF(pFlashData.file, pFlashData.container, pFlashData.size.width, pFlashData.size.height, pFlashData.version, pFlashData.expressInstall, pFlashData.vars, pFlashData.params, pFlashData.attributes);
}	



function selectLink(){
	var nomSection = id.substring(0,id.indexOf('_'));
	$('lien_' + nomSection).className = "active";
}

function selectLinkSubMenu(){
	var nomSection = id.substring(0,id.indexOf('_'));
	var nomSousSection = id.substring(id.indexOf('_')+1);
	if (nomSousSection == 'accueil') return;
	$('lien_' + id).src = "medias/interface/" + nomSection + "/btn_" + nomSousSection + "_down.gif";
	$('lien_' + id).className = null;
}

function gererResize () {
	var size1 = document.getSize();
	var size2 = document.getScrollSize();
	if (size2.y > size1.y) {
		//alert("not fixed");
		$$(".box_abds")[0].removeClass("fixed");
	
		if (Browser.Engine.trident) {
			$$(".box_abds")[0].setStyle('margin-top', (size2.y - $$(".box_abds")[0].getCoordinates().top) + 'px');
		}
	} else {
		//alert("fixed");
		$$(".box_abds")[0].addClass("fixed");
	}
}
