// JavaScript Document
function loadcssfile(filename,title)
{
    var fileref=document.createElement("link")
    fileref.setAttribute("rel", "stylesheet")
    fileref.setAttribute("type", "text/css")
    fileref.setAttribute("href", filename)
    fileref.setAttribute("title", title)
    fileref.disabled=true;

    document.getElementsByTagName("head")[0].appendChild(fileref)
}

// TO ADD A NEW CSS THEME ADD AN EXTRA LINE BELOW FOR THE NEW FILE
// Remove lines for files that are no longer used
//
// "../css/FILENAME.css","TITLE"
//

loadcssfile("/css/seventies.css","The 70s") ////dynamically load and add this .css file
loadcssfile("/css/facemerlin.css","Faceboook") ////dynamically load and add this .css file
loadcssfile("/css/chiller.css","Chiller") ////dynamically load and add this .css file
loadcssfile("../css/Default.css","Default") ////dynamically load and add this .css file
loadcssfile("../css/Reverse.css","Reverse") ////dynamically load and add this .css file
loadcssfile("../css/clean.css","Clean") ////dynamically load and add this .css file
// loadcssfile("../css/Valkyrie.css","Lions Den") ////dynamically load and add this .css file//
loadcssfile("../css/MerlinsBar.css","Our Bar") ////dynamically load and add this .css file


