//'******************************************************************************
//'******************************************************************************
//' Name:		menu.js
//' Author:	    Heather Olsen 
//' Purpose:	Menu for Houses for Rent
//' Date:       10/16/06
//'******************************************************************************
//'******************************************************************************

<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

// USE lowercase FOR ALL OPTIONS ONLY

var topimage		= "yes" 		//  SHOW IMAGE AT THE TOP OF THE MENU
var botimage 		= "yes" 		//  SHOW IMAGE AT THE BOTTOM OF THE MENU


document.write('<DIV id="menulocation" style="z-index: 10;" class="printhide">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="154"><tr><td>');
   if (topimage == "yes") {
document.write('<img src="picts/menu-top-1.gif" width="154" height="81" class="menutrans"></a><br>');
document.write('<img src="picts/menu-top-2.gif" width="154" height="39"></a><br>');
}
document.write('<ul id="top-nav">');


// START MENU LINKS - EDIT BELOW THIS AREA

// Home
//document.write('  <li class="menuT"><a href="index.html">Home</a></li>');

// Houses For Rent
document.write('  <li class="menuT"><a href="index.html">Houses For Rent</a>');

// Office Space
//document.write('  <li class="menuT"><a href="offices.htm">Office Space For Rent</a>');


// Homes For Sale
//document.write('  <li class="menuT"><a href="homes966Aspen.htm">Home 4 Sale - 966 Aspen</a>');
//document.write('  <li class="menuT"><a href="homes1275Front.htm">Home 4 Sale-1275 Front</a>');
//document.write('  <li class="menuT"><a href="homes1032Pepper.htm">Home 4 Sale-1032 Pepper</a>');

// Storage Units For Rent
document.write('  <li class="menuT"><a href=\"http://www.storagefallon.com\" target=\"_blank\">Storage Units For Rent</a>');

// Forms
document.write('  <li class="menuT"><a href="forms.htm">Forms</a>');




// Gallery
//document.write('  <li class="menuT"><a href="gallery1.htm">Gallery</a>');
//document.write('    <ul id="sub-nav">');
//document.write('      <li><a href="gallery1.htm">Gallery 1</a></li>');
//document.write('      <li><a href="gallery2.htm">Gallery 2</a></li>');
//document.write('    </ul>');
//document.write('  </li>');


// Contact Us
document.write('  <li class="menuT"><a href="contact.htm">Contact Us</a></li>');

// END MENU LINKS //


// jeff
//document.write('  <li class="menuT">Jeffs Copy Express</li>');


//document.write('<img src="picts/menu-top-1.gif" width="154" height="41" class="menutrans"></a><br>');
//document.write('<img src="picts/menu-top-2.gif" width="154" height="19"></a><br>');
//document.write('heather');
//document.write('  <li class="menuT"><IMG src=\"./picts/jeff_copy_express_store_front.jpg\" border=\"0\" width=\"170\" height=\"98\"</li>');

//document.write('<td><IMG src=\"./picts/jeff_copy_express_store_front.jpg\" border=\"0\" width=\"170\" height=\"98\"</td>');   



document.write('</ul>');
//document.write('</td></tr></table></DIV>');



//HMO START - add code to display picture on menu side bar //
document.write('<tr><td class="sidebartitle" align="center"><br><br><br>Rental Office located inside<br> Jeff&#39;s Copy Express');
document.write('</td></tr>');
document.write('<tr><td><IMG src=\"./picts/jeffsstorefront_thumb_145.jpg\" hspace=\"5\" vspace=\"5\" border=\"0\" width=\"145\" height=\"125\">');
document.write('</td></tr>');
document.write('<tr><td class="sidebartitle" align="center">235 South Maine St.');
document.write('</td></tr>');
document.write('<tr><td class="sidebartitle" align="center">Fallon, NV 89406');
document.write('</td></tr>');
document.write('<tr><td class="sidebartitle" align="center">775-423-4361');
//HMO END - of code to display picture on menu side bar


document.write('</td></tr>');

document.write('</table></DIV>');






//--
//document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="154"><tr><td>');
//document.write('<tr>');
//  document.write('<td class=\"sidebarHeaderWhite\">Drive-Thru:</td>'); 
//document.write('</tr>');


//document.write('</table>');
//document.write('</td></tr></table>');


		

//HMO END - add code to display picture on menu side bar //





// YOU DO NOT NEED TO EDIT BELOW THIS LINE

function IEHoverPseudo() {

	var navItems = document.getElementById("top-nav").getElementsByTagName("li");
	
	for (var i=0; i<navItems.length; i++) {
		if(navItems[i].className == "menuT") {
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = "menuT"; }
		}
	}

}
window.onload = IEHoverPseudo;
//  End -->