window.onload=function(){
if(!NiftyCheck())
    return;
RoundedBottom("div#menu1","#f4f4f4","#e84983");
RoundedBottom("div#menu2","#f4f4f4","#00a1e2");
RoundedBottom("div#menu3","#f4f4f4","#eb9440");
RoundedBottom("div#menu4","#f4f4f4","#d7432e");
RoundedBottom("div#menu5","#f4f4f4","#cecb37");
RoundedBottom("div#menu6","#f4f4f4","#156d45");
RoundedBottom("div#menu8","#f4f4f4","#444438");
RoundedBottom("div#wrap","#e0e9fc","#2d4e93");
RoundedTop("div#wrap","#6c9fd3","#2d4e93");
			document.getElementById('menu2').onmouseover = function() {
				menuslideout("d1");
			}

			document.getElementById('menu2').onmouseout = function() {
				menuslidein("d1");
			}
			document.getElementById('menu1').onmouseover = function() {
				menuslideout("d0");
			}

			document.getElementById('menu1').onmouseout = function() {
				menuslidein("d0");
			}
			document.getElementById('menu3').onmouseover = function() {
				menuslideout("d2");
			}

			document.getElementById('menu3').onmouseout = function() {
				menuslidein("d2");
			}
}
function menuslideout(menuitem) {
document.getElementById(menuitem).style.display = "block";
if (document.getElementById("iframe1") != null) {
document.getElementById('iframe1').style.visibility = "hidden";
}
}
function menuslidein(menuitem) {
document.getElementById(menuitem).style.display = "none";
if (document.getElementById("iframe1") != null) {
document.getElementById('iframe1').style.visibility = "visible";
}
}