// Permet de "Switcher" le thème du site.
// param title : un nom de style. ex : title = "style.css"
function setActiveStyleSheet(title){
    var i, a;
    for( i = 0 ; (a = document.getElementsByTagName("link")[i]) ; i++){
        if((a.getAttribute("rel") == "stylesheet") && ((a.getAttribute("href") == "style.css") || (a.getAttribute("href") == "style01.css"))){
            a.href = title;
        }
    }
}


