window.onload=function(){
    if(!NiftyCheck())
        return;
    
    /*construct rounded boxes based on current theme*/
    var selectedtitle=getCookie("mysheet")
    if (selectedtitle=='wood-theme') {
        /*wood theme*/
        Rounded("div#titlebar","all","#749d75","#f6ffa7","smooth");
        Rounded("div#content","all","#749d75","#FFF","smooth");
        Rounded("div#nav","all","#749d75","#609a46","smooth");
        Rounded("div#software div","all","#749d75","#84bc57","smooth");
        Rounded("div#hardware div","all","#749d75","#84bc57","smooth");
        Rounded("div#python div","all","#749d75","#84bc57","smooth");
        Rounded("form","all","#749d75","#609a46","smooth");
        Rounded("blockquote","tr bl","#FFF","#CDFFAA","border #88D84F");
        Rounded("div.scrshot","tr bl","#FFF","#CDFFAA","border #88D84F");
        Rounded("div#relax","all","#FFF","transparent");
        Rounded("div#footer","all","#749d75","#CCCCCC","small border #fff");
    } else {
        /*water theme*/
        Rounded("div#titlebar","all","#D6DEEC","#a4f0ff","smooth");
        Rounded("div#content","all","#D6DEEC","#FFF","smooth");
        Rounded("div#nav","all","#D6DEEC","#95B3DE","smooth");
        Rounded("div#software div","all","#D6DEEC","#B1C0D5","smooth");
        Rounded("div#hardware div","all","#D6DEEC","#B1C0D5","smooth");
        Rounded("div#python div","all","#D6DEEC","#B1C0D5","smooth");
        Rounded("form","all","#D6DEEC","#B4CEF7","smooth");
        Rounded("blockquote","tr bl","#FFF","#a6f1ff","border #6cb3da");
        Rounded("div.scrshot","tr bl","#FFF","#a6f1ff","border #6cb3da");
        Rounded("div#relax","all","#FFF","transparent");
        Rounded("div#footer","all","#D6DEEC","#CCCCCC","small border #fff");
    }
    
    /*pre-select radio button in theme section*/
    var formref=document.getElementById("switchform")
    if (formref != null) {
        indicateSelected(formref.choice)
    }
}