function zoomphoto_navigation(actuelle){

	fermer = '<a href="#" onclick="zoomphoto_dezoomer();return false;"><img src="http://feu-sacre.net/_interface/global/fermer.png" style="border:none;" alt="X" /></a>';

	if(actuelle > 0){
		precedent = '<a href="#" title="' + titres_album[actuelle - 1] + '" onclick="zoomphoto(' + (actuelle - 1) + ');return false;"><img src="http://feu-sacre.net/_interface/global/precedenta.png" style="border:none;" alt="' + titres_album[actuelle - 1] + '" /></a>';
	} else {
		precedent = '<img src="http://feu-sacre.net/_interface/global/precedentpasa.png" style="border:none;" alt="<<" />';
	}

	if(actuelle < titres_album.length - 1){
		suivant = '<a href="#" title="' + titres_album[actuelle + 1] + '" onclick="zoomphoto(' + (actuelle + 1) + ');return false;"><img src="http://feu-sacre.net/_interface/global/suivanta.png" style="border:none;" alt="' + titres_album[actuelle + 1] + '" /></a>';
	} else {
		suivant = '<img src="http://feu-sacre.net/_interface/global/suivantpasa.png" style="border:none;" alt=">>" />';
	}

	document.getElementById('zoomphoto_navigation').innerHTML = '<table cellpadding="0" cellspacing="0" border="0" style="width:100%;margin:0px;"><tr><td style="width:0%;">' + precedent + '</td><td style="width:0%;white-space:nowrap;padding:0px 10px 0px 10px;color:#000000;font-size:11px;font-family:verdana;">Image&nbsp;' + (actuelle + 1) + '/' + images_album.length + '</td><td style="width:0%;">' + suivant + '</td><td style="width:100%;text-align:center;font-weight:bold;color:#000000;font-size:11px;font-family:verdana;">' + titres_album[actuelle] + '</td><td style="width:0%;">' + fermer + '</td></tr></table>';

}




function zoomphoto_dezoomer(){
	//reactiver_site();
	document.getElementById('zoomphoto').innerHTML = '';
}




function zoomphoto_alpha(){
	izoomphotochargement++;
	if(izoomphotochargement >= 20){
		if(izoomphotoalpha < 100){
			izoomphotoalpha = izoomphotoalpha + 20;
       			document.getElementById('zoomphoto_html').style['filter'] = 'alpha(opacity=' + izoomphotoalpha + ')';
        		document.getElementById('zoomphoto_html').style['-moz-opacity'] = izoomphotoalpha / 100;
       	 		document.getElementById('zoomphoto_html').style['-khtml-opacity'] = izoomphotoalpha / 100;
        		document.getElementById('zoomphoto_html').style['opacity'] = izoomphotoalpha / 100;
			tmp = document.getElementById('zoomphoto_photo').offsetWidth;
			document.getElementById('zoomphoto_html').style.width = tmp + 'px';
		} else {
			if(document.getElementById('zoomphoto_photo').offsetWidth > 0){
				clearInterval(zoomphotoInterval);
				document.getElementById('zoomphoto').style.background = 'none';
			}
		}
	} else if(izoomphotochargement == 5){	
		document.getElementById('zoomphoto').style.backgroundImage = 'url(\'http://feu-sacre.net/_interface/global/chargement.gif\')';
	}
}

function positiontop(){
	if(navigator.appName == 'Microsoft Internet Explorer'){
		return document.documentElement.scrollTop;
	} else {
		return pageYOffset;
	}
}


function zoomphoto(actuelle){
	//desactiver_site();
	html = '<div id="zoomphoto_html" style="background-image:url(\'http://feu-sacre.net/_interface/global/chargement.gif\');background-position: center center;background-repeat:no-repeat;min-width:250px;width:auto;text-align:left;background-color:#FFFFFF;padding:10px;border:2px solid #CCCCCC;position:relative;margin:0px auto 0px auto;">';
	html += '<p id="zoomphoto_navigation" style="padding:0px;margin:0px;"></p><p style="text-align:center;"><img src="' + images_album[actuelle] + '" id="zoomphoto_photo" /></p>';
	html += '<div id="zoomphoto_texte" style="color:#000000;">' + descriptions_album[actuelle] + '</div>';
	html += '</div>';
	document.getElementById('zoomphoto').innerHTML = html;
       	document.getElementById('zoomphoto_html').style['filter'] = 'alpha(opacity=0)';
        document.getElementById('zoomphoto_html').style['-moz-opacity'] = 0;
        document.getElementById('zoomphoto_html').style['-khtml-opacity'] = 0;
        document.getElementById('zoomphoto_html').style['opacity'] = 0;
	document.getElementById('zoomphoto').style.visibility = 'visible';
	document.getElementById('zoomphoto').style.position = 'absolute';
	document.getElementById('zoomphoto').style.top = (positiontop() + 20) + 'px';
	document.getElementById('zoomphoto').style.left = '0px';
	document.getElementById('zoomphoto').style.width = '100%';
	document.getElementById('zoomphoto').style.textAlign = 'center';
	document.getElementById('zoomphoto').style.backgroundPosition = 'center center';
	document.getElementById('zoomphoto').style.backgroundRepeat = 'no-repeat';
	zoomphoto_navigation(actuelle);
	izoomphotochargement = 0;
	izoomphotoalpha = 0;
	zoomphotoInterval = setInterval('zoomphoto_alpha()',100);
}


function afficherGalerie(){

	tmp = '';

	catavant = '';
	for(i=0;i<images_album.length;i++){
		if(categories_album[i] != catavant && affichercat_album == 'Oui'){
			tmp += '</p><h2>' + categories_album[i] + '</h2><p>';
			catavant = categories_album[i];
		}
		tmp += ' <a href="#" title="' + titres_album[i] + '" onclick="zoomphoto(' + i + ');return false;"><img src="' + vignettes_album[i] + '" alt="' + titres_album[i] + '" class="vignettegalerie30" /></a> ';
	}

	document.getElementById('galerie30').style.textAlign = aligner_album;
	if(affichercat_album == 'Oui'){
		document.getElementById('galerie30').innerHTML = '<p>' + tmp;
	} else {
		document.getElementById('galerie30').innerHTML = tmp;
	}

}

