window.onload=function()
{
	setInterval('blinkIt()',500);
	if(!NiftyCheck())
		return;
	else{
		Rounded("div#header","bottom","#FFFFFF","#000080","smooth");
		Rounded("div#header h1","bottom","#84B7FF","#657DA6","small smooth");
		Rounded("div#content","tl bottom","#D6DEEC","#FFF","smooth");
		Rounded("div#nav","tr bottom","#D6DEEC","#95B3DE","smooth");
		Rounded("div#monitoringtable","all","#FFFFFF","#000080","smooth");
		Rounded("div#sidenotes","all","#D6DEEC","#B1C0D5","smooth");
		/*Rounded("form","all","#D6DEEC","#B4CEF7","smooth");*/
		Rounded("blockquote","tr bl","#FFF","#CDFFAA","border #88D84F");
		Rounded("div#relax","all","#FFF","transparent");
		//Rounded("div#footer","all","#D6DEEC","#CCCCCC","small border #fff");
		Rounded("div#footer","all","#FFFFFF","#000080","small border #fff");
		Rounded("div#nifty","all","#FFF","#D4DDFF","smooth");
		Rounded("div#ktheader","top","#FFFFFF","#000090","smooth");
		Rounded("div#ktheader","bottom","#FFFFFF","#d2d6da","smooth");
		Rounded("div#kt1","top","#FFFFFF","#000090","smooth");
		Rounded("div#kt2","top","#FFFFFF","#d2d6da","smooth");
		Rounded("div#ktintroduction1","top","#FFFFFF","#000090","smooth");
		Rounded("div#ktintroduction2","top","#FFFFFF","#d2d6da","smooth");
		Rounded("div#ktlocation1","top","#FFFFFF","#000090","smooth");
		Rounded("div#ktlocation2","top","#FFFFFF","#d2d6da","smooth");
		Rounded("div#ktaim1","top","#FFFFFF","#000090","smooth");
		Rounded("div#ktaim2","top","#FFFFFF","#d2d6da","smooth");
		Rounded("div#kteligibility1","top","#FFFFFF","#000090","smooth");
		Rounded("div#kteligibility2","top","#FFFFFF","#d2d6da","smooth");
		Rounded("div#ktadmission1","top","#FFFFFF","#000090","smooth");
		Rounded("div#ktadmission2","top","#FFFFFF","#d2d6da","smooth");
		Rounded("div#ktfee1","top","#FFFFFF","#000090","smooth");
		Rounded("div#ktfee2","top","#FFFFFF","#d2d6da","smooth");
		Rounded("div#kttiming1","top","#FFFFFF","#000090","smooth");
		Rounded("div#kttiming2","top","#FFFFFF","#d2d6da","smooth");
		Rounded("div#ktstudent1","top","#FFFFFF","#000090","smooth");
		Rounded("div#ktstudent2","top","#FFFFFF","#d2d6da","smooth");
		Rounded("div#ktaccount1","top","#FFFFFF","#000090","smooth");
		Rounded("div#ktaccount2","top","#FFFFFF","#d2d6da","smooth");
		Rounded("div#ktteacher1","top","#FFFFFF","#000090","smooth");
		Rounded("div#ktteacher2","top","#FFFFFF","#d2d6da","smooth");
		Rounded("div#ktstaff1","top","#FFFFFF","#000090","smooth");
		Rounded("div#ktstaff2","top","#FFFFFF","#d2d6da","smooth");
		Rounded("div#ktclass1","top","#FFFFFF","#000090","smooth");
		Rounded("div#ktclass2","top","#FFFFFF","#d2d6da","smooth");
		//Rounded("div#my_menu","top","#FFF","#000070","smooth");
		//myMenu = new SDMenu("my_menu");
		//myMenu.init();
	}
}

function blinkIt() {
    if (!document.all) return;
    else {
       for(i=0;i<document.all.tags('blink').length;i++){
          s=document.all.tags('blink')[i];
          s.style.visibility=(s.style.visibility=='visible')?'hidden':'visible';
       }
    }
}