
<!--
if (document.images) {
   var home1 = new Image();
   home1.src = "pictures/homebttnup.gif";
   var home2 = new Image();
   home2.src = "pictures/homebttndown.gif";
}
if (document.images) {
   var search1 = new Image();
   search1.src = "pictures/searchbttnup.gif";
   var search2 = new Image();
   search2.src = "pictures/searchbttndown.gif";
}
if (document.images) {
   var build1 = new Image();
   build1.src = "pictures/bldrbttnup.gif";
   var build2 = new Image();
   build2.src = "pictures/bldrbttndown.gif";
}
if (document.images) {
   var map1 = new Image();
   map1.src = "pictures/mapbttnup.gif";
   var map2 = new Image();
   map2.src = "pictures/mapbttndown.gif";
}
if (document.images) {
   var staff1 = new Image();
   staff1.src = "pictures/staffbttnup.gif";
   var staff2 = new Image();
   staff2.src = "pictures/staffbttndown.gif";
}

function home_up() {
	if (document.images) {
		document["home"].src = home1.src;
	}
}
function home_down() {
	if (document.images) {
		document["home"].src = home2.src;
	}
}


function search_up() {
	if (document.images) {
		document["search"].src = search1.src;
	}
}
function search_down() {
	if (document.images) {
		document["search"].src = search2.src;
	}
}	

function build_up() {
	if (document.images) {
		document["build"].src = build1.src;
	}
}
function build_down() {
	if (document.images) {
		document["build"].src = build2.src;
	}
}

function map_up() {
	if (document.images) {
		document["map"].src = map1.src;
	}
}
function map_down() {
	if (document.images) {
		document["map"].src = map2.src;
	}
}

function staff_up() {
	if (document.images) {
		document["staff"].src = staff1.src;
	}
}
function staff_down() {
	if (document.images) {
		document["staff"].src = staff2.src;
	}
}

if (document.images) {
   var state1 = new Image();
   state1.src = "pictures/statemap.gif";
   var state2 = new Image();
   state2.src = "pictures/statemap2.gif";
}

function statemap() {
	if (document.images) {
		document["state"].src = state1.src;
	}
}
function statemap_over() {
	if (document.images) {
		document["state"].src = state2.src;
	}
}

if (document.images) {
   var search3 = new Image();
   search3.src = "pictures/searchbttnup2.gif";
   var search4 = new Image();
   search4.src = "pictures/searchbttndown2.gif";
}

function search_up2() {
	if (document.images) {
		document["search2"].src = search3.src;
	}
}
function search_down2() {
	if (document.images) {
		document["search2"].src = search4.src;
	}
}

if (document.images) {
   var show1 = new Image();
   show1.src = "pictures/showbttnup.gif";
   var show2 = new Image();
   show2.src = "pictures/showbttndown.gif";
}

function show_up() {
	if (document.images) {
		document["show"].src = show1.src;
	}
}
function show_down() {
	if (document.images) {
		document["show"].src = show2.src;
	}
}
									
//-->

