
<!--
// rollover
if(document.images)  {	
	 
         home_off = new Image();home_off.src='images/home_off.gif';
	 home_on = new Image();home_on.src='images/home_on.gif';
	 
         location_off = new Image();location_off.src='images/location_off.gif';
	 location_on = new Image();location_on.src='images/location_on.gif';
	 
          greatroom_off = new Image();greatroom_off.src='images/greatroom_off.gif';
	 greatroom_on = new Image();greatroom_on.src='images/greatroom_on.gif';

         master_off = new Image();master_off.src='images/master_off.gif';
	 master_on = new Image();master_on.src='images/master_on.gif';
	 
         downstairs_off = new Image();downstairs_off.src='images/downstairs_off.gif';
	 downstairs_on = new Image();downstairs_on.src='images/downstairs_on.gif';
	 
         powerhouse_off = new Image();powerhouse_off.src='images/powerhouse_off.gif';
	 powerhouse_on = new Image();powerhouse_on.src='images/powerhouse_on.gif';
	 
         water_off = new Image();water_off.src='images/water_off.gif';
	 water_on = new Image();water_on.src='images/water_on.gif';
	  
         extras_off = new Image();extras_off.src='images/extras_off.gif';
	 extras_on = new Image();extras_on.src='images//extras_on.gif';
	 
         walkthru_off = new Image();walkthru_off.src='images/walkthru_off.gif';
	 walkthru_on = new Image();walkthru_on.src='images/walkthru_on.gif';
	 
          contact_off = new Image();contact_off.src='images/contact_off.gif';
	 contact_on = new Image();contact_on.src='images/contact_on.gif';
	 
         outbuildings_off = new Image();outbuildings_off.src='images/outbuildings_off.gif';
	 outbuildings_on = new Image();outbuildings_on.src='images/outbuildings_on.gif';
}	       
// rollover function
function imgOn(name) { 
	if (document.images) {
		document.images[name].src = eval(name+"_on.src");
}}

//rollover function
function imgOff(name) { 
	if (document.images) {
		document.images[name].src = eval(name+"_off.src");
}}

//-->

