// JavaScript Document
	document.write('<table border="0" cellspacing="0" cellpadding="0">');
	document.write('<tr>');
	
	
	if(menu == "About") {
		document.write('<td class="aboutbg3" align="right" ><a href="">About Alex</a></td>');
	}	
	if(menu != "About") {
		document.write('<td class="nav-lft-off"  onmouseover="this.className=\'nav-lft-on\'"  onmouseout="this.className=\'nav-lft-off\'" ><a href="'+path+'/about.html">About Alex</a></td>');
	
	}
	
	
	if(menu == "Buying") {
		document.write('<td class="buyingbg" align="center" ><a href="">Buying</a></td>');
	}else {
		document.write('<td class="nav-bg-off"  onmouseover="this.className=\'nav-bg-on\'"  onmouseout="this.className=\'nav-bg-off\'" ><a href="'+path+'/buying.html">Buying</a></td>');
	
	}
	if(menu == "Selling") {
		document.write('<td class="sellingbg1" align="center" ><a href="">Selling</a></td>');
	} else {
	document.write('<td class="nav-bg-off"  onmouseover="this.className=\'nav-bg-on\'"  onmouseout="this.className=\'nav-bg-off\'" ><a href="'+path+'/selling.html">Selling</a></td>');
	}
	if(menu == "Listings") {
		document.write('<td class="listingsbg" ><a href="">Listings</a></td>');
	} else {
	document.write('<td class="nav-bg-off" onmouseover="this.className=\'nav-bg-on\'"  onmouseout="this.className=\'nav-bg-off\'"><a href="'+path+'/listings.html">Listings</a></td>');
	}
	
	if(menu == "Blog") {
		document.write('<td class="blogbg" ><a href="http://www.alexreedy.com/blog">Alex\'s Blog</a></td>');
	} else {
	document.write('<td class="nav-bg-off" onmouseover="this.className=\'nav-bg-on\'"  onmouseout="this.className=\'nav-bg-off\'"><a href="http://www.alexreedy.com/blog">Alex\'s Blog</a></td>');
	}
	if(menu == "Relocating") {
		document.write('<td class="aboutbg2" ><a href="">Relocating</a></td>');
	} else {
	document.write('<td class="nav-rgt-off" onmouseover="this.className=\'nav-rgt-on\'"  onmouseout="this.className=\'nav-rgt-off\'"><a href="'+path+'/relocating.html">Relocating</a></td>');
	}

	document.write('</tr>');
	document.write('</table>');

