<!-- Begin HORIZONTAL CSS DROP MENU VER 1.50 2008

// NOTE: If you use a ' add a slash before it like this \'

// USE lowercase FOR ALL OPTIONS ONLY


var showtop		= "no"		//  SHOW TOP MENU IMAGE
var showimage		= "no"		//  SHOW BOTTOM MENU IMAGE


document.write('<div id="menulocation" class="printhide">');
   if (showtop == "yes") {
document.write('<img src="picts/menu-top.jpg" width="150" height="125" class="menutop"></a><br>');
}
document.write('<table cellpadding="0" cellspacing="0" border="0" width="150"><tr><td class="topmargin">');
document.write('<ul id="top-nav">');




// START MENU LINKS - EDIT BELOW THIS AREA




document.write('  <li class="menuT"><a href="index.html" title="Main Page">Home</a></li>');




// MENU SEPARATOR 1
document.write('<li class="menuseparator"></li>');




document.write('  <li class="menuT"><a title="My PhotoBlog with Latest Images" href="/photo/index.php" target="_blank">My PhotoBlog</a></li>');

// MENU SEPARATOR 2
document.write('<li class="menuseparator"></li>');


document.write('  <li class="menuT"><a href="/gallery_main.html" target="_blank" class="parentM">Galleries</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a title="Galleries Main Page" href="/gallery_main.html"  target="_blank">Gallery Main Page</a></li>');
document.write('      <li><a title="External - Adobe PhotoShop Express Gallery" href="http://sirius2.photoshop.com" target="_blank">Adobe Photoshop Express Gallery</a> External Gallery at Adobe</li>');
document.write('      <li><a title="External - Picasa Gallery" href="http://picasaweb.google.com/jjm352" target="_blank">Picasa Gallery</a> External Gallery at Google</li>');
document.write('      <li><a title="External - NAPP Photoshop User Portfolio" href="http://www.photoshopuser.com/members/portfolios/view/image/120273" target="_blank" target="_blank">PhotoShop User Gallery</a> External Gallery at PhotoShop User Magazine</li>');
document.write('    </ul>');
document.write('  </li>');



document.write('  <li class="menuT"><a href="/gallery_ac/gallery_ac.html" title="Atlantic City Gallery">Atlantic City Gallery</a></li>');

document.write('  <li class="menuT"><a href="/gallery_revel/gallery_revel.html" title="Atlantic City Gallery">Revel Project Gallery</a></li>');

document.write('  <li class="menuT"><a href="/gallery_pano/gallery_pano.html" title="Panoramic Gallery">Panoramic Gallery</a></li>');


// MENU SEPARATOR 3
document.write('<li class="menuseparator"></li>');




document.write('  <li class="menuT"><a href="personal/Top/default.htm" title="Login Required">Personal</a></li>');







// MENU SEPARATOR 4
document.write('<li class="menuseparator"></li>');



document.write('  <li class="menuT"><a href="services.htm" title="Services Provided">Services</a></li>');

document.write('  <li class="menuT"><a href="contact.htm" title="contact me">Contact</a></li>');

document.write('  <li class="menuT"><a href="about.htm" title="Information">About</a></li>');


// MENU SEPARATOR 5
document.write('<li class="menuseparator"></li>');



// END LINKS //



document.write('</ul>');
document.write('</td></tr><tr><td align="center">');




// START MENU IMAGE


   if (showimage == "yes") {
document.write('<br><br><a href="index.html"><img src="picts/menu-image.jpg" width="150" height="75" border="0" class="borders-menuimage"></a><br><br><br>');
}






document.write('</td></tr></table>');
document.write('</div>');




//  End -->









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;