for (var i=0;i<=11;i++) {
	var idxList = new Array('images_site/idx_accueil.gif','images_site/idx_accueil_on.gif',
'images_site/idx_biographies.gif','images_site/idx_biographies_on.gif',
'images_site/idx_publications.gif','images_site/idx_publications_on.gif',
'images_site/idx_telechargement.gif','images_site/idx_telechargement_on.gif',
//'images_site/idx_bulletin.gif','images_site/idx_bulletin_on.gif',
'images_site/idx_joindre.gif','images_site/idx_joindre_on.gif',
'images_site/idx_liens.gif','images_site/idx_liens_on.gif')
	var idx = new Array()

	eval('idx['+i+'] = new Image()')
	eval('idx['+i+'].src = "'+idxList[i]+'"')
}

for (var i=0;i<=11;i++) {
	var idxPersList = new Array('images_site/idx_pers_accueil.gif','images_site/idx_pers_accueil_on.gif',
'images_site/idx_pers_biographies.gif','images_site/idx_pers_biographies_on.gif',
'images_site/idx_pers_publications.gif','images_site/idx_pers_publications_on.gif',
'images_site/idx_pers_telechargement.gif','images_site/idx_pers_telechargement_on.gif',
//'images_site/idx_pers_bulletin.gif','images_site/idx_pers_bulletin_on.gif',
'images_site/idx_pers_joindre.gif','images_site/idx_pers_joindre_on.gif',
'images_site/idx_pers_liens.gif','images_site/idx_pers_liens_on.gif')
	var idxPers = new Array()

	eval('idxPers['+i+'] = new Image()')
	eval('idxPers['+i+'].src = "'+idxPersList[i]+'"')
}

for (var i=0;i<=11;i++) {
	var btnList = new Array('images_site/btn_recto.gif','images_site/btn_recto_on.gif',
'images_site/btn_verso.gif','images_site/btn_verso_on.gif',
'images_site/btn_acheter.gif','images_site/btn_acheter_on.gif',
'images_site/btn_panier.gif','images_site/btn_panier_on.gif',
'images_site/btn_courriel_lintuition.gif','images_site/btn_courriel_lintuition_on.gif',
'images_site/btn_envoyer.gif','images_site/btn_envoyer_on.gif')
	var btn = new Array()

	eval('btn['+i+'] = new Image()')
	eval('btn['+i+'].src = "'+btnList[i]+'"')
}

function auditPopUpLivre(whichOne) {
	windowWidth = 440;
	windowHeight = 560;
	var popUpWindow;
	var url = "pop_livre.html?"+whichOne
	popUpWindow = openPopUpLivre(url, "Livre", (screen.height/2)-(windowHeight/2+20), (screen.width/2)-(windowWidth/2+10), windowWidth, windowHeight);
	if (!popUpWindow) { alert("Vous avez un pop-up blocker, désactivez le pour pouvoir utiliser ce site Internet adéquatement!") }
	popUpWindow.focus()
}

function openPopUpLivre(url, name, top, left, width, height){
	return window.open(url, name, "top=" + top + ",left=" + left + ",width=" + width + ",height=" + height + ",menubar=no,location=no,status=yes,toolbar=no,scrollbars=yes");
}

function auditPopUpCritique(whichOne) {
	windowWidth = 440;
	windowHeight = 560;
	var popUpWindow;
	var url = "pop_critique_"+whichOne+".html"
	popUpWindow = openPopUpCritique(url, "Critique", (screen.height/2)-(windowHeight/2+20), (screen.width/2)-(windowWidth/2+10), windowWidth, windowHeight);
	if (!popUpWindow) { alert("Vous avez un pop-up blocker, désactivez le pour pouvoir utiliser ce site Internet adéquatement!") }
	popUpWindow.focus()
}

function openPopUpCritique(url, name, top, left, width, height){
	return window.open(url, name, "top=" + top + ",left=" + left + ",width=" + width + ",height=" + height + ",menubar=no,location=no,status=yes,toolbar=no,scrollbars=yes");
}