
if (document.getElementById){ 
document.write('<style type="text/css">\n')
document.write('.submenu{display: none;}\n')
document.write('</style>\n')
}

function SwitchMenu(obj){
	if(document.getElementById){
	var el = document.getElementById(obj);
	var ar = document.getElementById("masterdiv").getElementsByTagName("span"); 
		if(el.style.display != "block"){ 
			for (var i=0; i<ar.length; i++){
				if (ar[i].className=="submenu") 
				ar[i].style.display = "none";
			}
			el.style.display = "block";
		}else{
			el.style.display = "none";
		}
	}
}

var selected = null

homeoff=new Image();
homeoff.src="graphics/menu/home.gif";
homeon=new Image();
homeon.src="graphics/menu/home_.gif";

productrangeoff=new Image();
productrangeoff.src="graphics/menu/productrange.gif";
productrangeon=new Image();
productrangeon.src="graphics/menu/productrange_.gif";

brokeragesectionoff=new Image();
brokeragesectionoff.src="graphics/menu/brokeragesection.gif";
brokeragesectionon=new Image();
brokeragesectionon.src="graphics/menu/brokeragesection_.gif";

boatfinderoff=new Image();
boatfinderoff.src="graphics/menu/boatfinder.gif";
boatfinderon=new Image();
boatfinderon.src="graphics/menu/boatfinder_.gif";

ourservicesoff=new Image();
ourservicesoff.src="graphics/menu/ourservices.gif";
ourserviceson=new Image();
ourserviceson.src="graphics/menu/ourservices_.gif";

marinasoff=new Image();
marinasoff.src="graphics/menu/marinas.gif";
marinason=new Image();
marinason.src="graphics/menu/marinas_.gif";

grandbanksoff=new Image();
grandbanksoff.src="graphics/menu/grandbanks.gif";
grandbankson=new Image();
grandbankson.src="graphics/menu/grandbanks_.gif";

stevensoff=new Image();
stevensoff.src="graphics/menu/stevens.gif";
stevenson=new Image();
stevenson.src="graphics/menu/stevens_.gif";

broomoff=new Image();
broomoff.src="graphics/menu/broom.gif";
broomon=new Image();
broomon.src="graphics/menu/broom_.gif";

corvetteoff=new Image();
corvetteoff.src="graphics/menu/corvette.gif";
corvetteon=new Image();
corvetteon.src="graphics/menu/corvette_.gif";

vikioff=new Image();
vikioff.src="graphics/menu/viki.gif";
vikion=new Image();
vikion.src="graphics/menu/viki_.gif";

brokeragelistoff=new Image();
brokeragelistoff.src="graphics/menu/menubrokeragelist.gif";
brokerageliston=new Image();
brokerageliston.src="graphics/menu/menubrokeragelist_.gif";

preownedboatsoff=new Image();
preownedboatsoff.src="graphics/menu/preownedboats.gif";
preownedboatson=new Image();
preownedboatson.src="graphics/menu/preownedboats_.gif";

newboatsoff=new Image();
newboatsoff.src="graphics/menu/newboats.gif";
newboatson=new Image();
newboatson.src="graphics/menu/newboats_.gif";

function changeOn(name){
	document.images[name].src=eval(name + "on").src;
	
return(true);
}

function changeOff(name){
	if(name!=selected){
		document.images[name].src=eval(name + "off").src;
		
return(true);
	}

}