/* show-hide login */
function showHide(theDiv){
	theStyle = document.getElementById(theDiv).style ;
	if(theStyle.display == "block") {
		theStyle.display = "none";
	}
	else{
		theStyle.display = "block";
	}
}

/* menu de gauche ul et li */
function showHide2(mavariable){
	theStyle2 = document.getElementById(mavariable).style ;
	if(theStyle2.display == "block") {
		theStyle2.display = "none";
	}
	else{
		theStyle2.display = "block";
	}
}

/* change background page accueil */
function changeBackground(){
	var currentImage = document.getElementById('photo1').style.backgroundImage;
	
	if(currentImage.indexOf("0") > 0){
		document.getElementById('photo1').style.backgroundImage = "url(/images/photo1.jpg)";
		document.getElementById('imageLink').href = "/publications/documents-professionnels/sante-mentale.fr.html";
	}
	if(currentImage.indexOf("1") > 0){
		document.getElementById('photo1').style.backgroundImage = "url(/images/photo2.jpg)";
		document.getElementById('imageLink').href = "/publications/documents-professionnels/ergo-avc.fr.html";
	}
	if(currentImage.indexOf("2") > 0){
		document.getElementById('photo1').style.backgroundImage = "url(/images/photo0.jpg)";
		document.getElementById('imageLink').href = "/publications/documents-professionnels/milieu-scolaire.fr.html";
	}
	
}

/* Chargement de l'image de la page d'accueil */			
window.onload = function() {
	var randomnumber=Math.floor(Math.random()*3)

	if (document.getElementById('photo1') != null) {
		document.getElementById('photo1').style.backgroundImage = "url(/images/photo"+randomnumber+".jpg)";
		
		if (randomnumber == 0) {
			document.getElementById('imageLink').href = "/publications/documents-professionnels/milieu-scolaire.fr.html";	
		}
		
		if (randomnumber == 1) {
			document.getElementById('imageLink').href = "/publications/documents-professionnels/sante-mentale.fr.html";
		}
		
		if (randomnumber == 2) {
			document.getElementById('imageLink').href = "/publications/documents-professionnels/ergo-avc.fr.html";
		}
		
	}
	
	/** Pour le "style-switcher.js" */
  var cookie = readCookie("style");
  var title = cookie ? cookie : getPreferredStyleSheet();
  setActiveStyleSheet(title);	
	
}

function addToFavorite(url, title) {
	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, 'http://www.google.com',"");
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite( url, title); 
	} 
}		

function openAideRss() {
	newwindow=window.open('/utilitaires/aide-rss.fr.html','aiderss','height=500,width=400,left=100,top=100,resizable=yes,scrollbars=yes,toolbar=no,status=no');
	if (window.focus) {newwindow.focus()}
}