if (document.images) {
	menOff = new Image
	menOn = new Image
	menRed = new Image
	
	womenOff = new Image
	womenOn = new Image
	womenRed = new Image
	
	accessoriesOff = new Image
	accessoriesOn = new Image
	accessoriesRed = new Image
	
	yourbagOff = new Image
	yourbagOn = new Image
	yourbagRed = new Image
	
	homeOff = new Image
	homeOn = new Image
	homeRed = new Image
	
	biosOff = new Image
	biosOn = new Image
	biosRed = new Image
	
	contactOff = new Image
	contactOn = new Image
	contactRed = new Image
	
	teamriOff = new Image
	teamriOn = new Image
	teamriRed = new Image
	
	randomsOff = new Image
	randomsOn = new Image
	randomsRed = new Image
	
	linksOff = new Image
	linksOn = new Image
	linksRed = new Image

	menOff.src = "images/down_men.gif"
	menOn.src = "images/over_men.gif"
	menRed.src = "images/red_men.gif"
	
	womenOff.src = "images/down_women.gif"
	womenOn.src = "images/over_women.gif"
	womenRed.src = "images/red_women.gif"
	
	accessoriesOff.src = "images/down_accs.gif"
	accessoriesOn.src = "images/over_accs.gif"
	accessoriesRed.src = "images/red_accs.gif"
	
	yourbagOff.src = "images/down_yourbag.gif"
	yourbagOn.src = "images/over_yourbag.gif"
	yourbagRed.src = "images/red_yourbag.gif"
	
	homeOff.src = "images/down_home.gif"
	homeOn.src = "images/over_home.gif"
	homeRed.src = "images/red_home.gif"
	
	biosOff.src = "images/down_bios.gif"
	biosOn.src = "images/over_bios.gif"
	biosRed.src = "images/red_bios.gif"
	
	contactOff.src = "images/down_contact.gif"
	contactOn.src = "images/over_contact.gif"
	contactRed.src = "images/red_contact.gif"
	
	teamriOff.src = "images/down_teamri.gif"
	teamriOn.src = "images/over_teamri.gif"
	teamriRed.src = "images/red_teamri.gif"
	
	randomsOff.src = "images/down_randoms.gif"
	randomsOn.src = "images/over_randoms.gif"
	randomsRed.src = "images/red_randoms.gif"
	
	linksOff.src = "images/down_links.gif"
	linksOn.src = "images/over_links.gif"
	linksRed.src = "images/red_links.gif"
}


function popupWindow(url, width, height) {
	window.open(url,"DisplayWindow",'width=' + width + ',height=' + height + ',alwaysRaised=yes,resizable=yes,scrollbars=yes,menubar=no,titlebar=yes,toolbar=yes,left=1,top=1');
}

function movedown(){
	if (iens6&&parseInt(crossobj.style.top)>=(contentheight*(-1)+100))
	crossobj.style.top=parseInt(crossobj.style.top)-speed+"px"
	else if (ns4&&crossobj.top>=(contentheight*(-1)+100))
	crossobj.top-=speed
	movedownvar=setTimeout("movedown()",20)
}

function moveup(){
	if (iens6&&parseInt(crossobj.style.top)<=0)
	crossobj.style.top=parseInt(crossobj.style.top)+speed+"px"
	else if (ns4&&crossobj.top<=0)
	crossobj.top+=speed
	moveupvar=setTimeout("moveup()",20)
}

function getcontent_height(){
	if (iens6)
	contentheight=crossobj.offsetHeight
	else if (ns4)
	document.nscontainer.document.nscontent.visibility="show"
}

function resetToTop(){
	if (iens6&&parseInt(crossobj.style.top)<=0)
	crossobj.style.top="0px"
	else if (ns4&&crossobj.top<=0)
	crossobj.top="0px"
	//moveupvar=setTimeout("moveup()",20)
}

var brwsVer=parseInt(navigator.appVersion);
var timer;
var curSubMenu='';
	
function showSubMenu(menuId){
	if (brwsVer>=4) {
		if (curSubMenu!=''){hideSubMenu();}
		if (document.getElementById || document.all) {
			document.getElementById? document.getElementById(menuId).style.visibility="visible" : eval('document.all.'+menuId).style.visibility='visible';
		}
		else {
			eval('document.'+menuId).visibility='show';
		}
		curSubMenu=menuId;
	}
}
	
function hideSubMenu(){
	if (brwsVer>=4) {
		if (document.getElementById || document.all) {
			document.getElementById? document.getElementById(curSubMenu).style.visibility="hidden" : eval('document.all.'+curSubMenu).style.visibility='hidden';
		}
		else {
			eval('document.'+curSubMenu).visibility='hide';
		}
		curSubMenu='';
	}
}
