<!--

var hasFocus = 1;
var whichHeader = "tab" + hasFocus;
var whichLayer = "scr" + hasFocus;
var randomdice=Math.round(Math.random()*10)

current_menu=0;
current_item=0;

if (document.images)
{
        preloadImages();
}
function preloadImages()
{
		// load top of page menu images
        menu_images=new Array();
		menu_images_on=new Array();
        for (i=0;i<6;i++)
        {
                menu_images[i]=new Image();
                menu_images_on[i]=new Image();
                menu_images[i].src="/images/"+i+".gif";
                menu_images_on[i].src="/images/"+i+"-on.gif";
        }

}

function rollover_top(which)
{
        if (document.images)
        {
				document.images['button'+which].src=menu_images_on[which].src;		
        } 
}

function rolloff_top(which)
{
        if (document.images)
        {
                document.images['button'+which].src=menu_images[which].src;			
        }
}

function switchColorOn(el) {
	document.all[el].style.backgroundColor = "#ffe88c";
}

function switchColorOff(el) {
	document.all[el].style.backgroundColor = "#DDDAB9";
}

function gotourl(url) {
	document.location = url;
}

