//SET YOUR DEFAULT PAGE BELOW.
var defaultPage = "default.html"
var globalNav = "<ul id='nav'>"+
					"<li><a href='/default.html' title='HOME'>HOME</a></li>"+
					"<li><a href='/lifezones.html' title='DISCOVER LIFEZONES'>DISCOVER LIFEZONES</a></li>"+
					"<li><a href='/our-homes.html' title='PHOTO GALLERY OF HOMES'>PHOTO GALLERY OF HOMES</a></li>"+				
					"<li><a href='/our-communities.html' title='Our Communities'>OUR COMMUNITIES</a></li>"+				
					"<li><a href='/about.html' title='ABOUT US'>ABOUT US</a>"+
						"<ul>"+
						   <!-- "<li class='top'><a href='/contact.html' title='Corporate Contact Information'>CORPORATE CONTACT INFORMATION</a></li>"+//-->
							 "<li><a href='/testimonials/' title='Testimonials'>TESTIMONIALS</a></li>"+
							"<li><a href='http://www.homeoftexas.com/pages/homeowners_whychoosehome.htm' title='Your Home Warranty' target='_blank'>YOUR HOME WARRANTY</a></li>"+
							"<li><a href='/greenliving/' title='Environmental Responsibility'>GREEN BUILDING AND ENERGY STAR</a></li>"+
							"<li><a href='/superior-service.html' title='Grand Haven Homes Superior Customer Service'>SUPERIOR SERVICE</a></li>"+
							"<li><a href='/careers.html' title='Grand Haven Homes Careers'>CAREERS</a></li>"+
							"<li class='bottom'><a href='/news/news.html'>GRAND HAVEN IN THE NEWS</a></li>"+
						"</ul>"+
					"</li>"+
					"<li><a href='/design-center.html' title='Grand Haven Homes Design Center'>DESIGN CENTER</a></li>"+				
					"<li><a href='/buyers-guide.html' title='Grand Haven Homes Homeowner Support'>HOME BUYERS GUIDE</a></li>"+
					"<li><a href='/realtor-zone.html' title='Grand Haven Homes Reltor Zone'>REALTOR ZONE</a></li>"+
					"<li><a href=\'http://www.rockportfinancialservices.com\' target='_blank'>FINANCE YOUR HOME</a></li>"+
					"<li><a href='/contact.html' title='CONTACT US'>CONTACT US</a></li>"+
				"</ul>";

var pathName = new String(location.pathname);//Firefox represents the href value as /filename.html
var fullHref = new String(location.href);//IE represents the href value as http://www.domain.com/filename.html

if(fullHref.charAt(fullHref.length-1) == "/"){
	fullHref = fullHref + defaultPage;
}

//set '/' to the correct default Page
if(pathName =="/"){
	pathName = "/"+defaultPage;
}

//write the navigation
document.write(globalNav);


var navList = document.getElementsByTagName('LI');
for(i in navList){
	if(navList[i].hasChildNodes){
		if(navList[i].firstChild.attributes.href){
			var hrefPath = navList[i].firstChild.attributes.href.value;
			if((hrefPath == pathName) || (fullHref == hrefPath)){
				navList[i].className="active";
			}
		}
	}
}

var facebookHtml = '<div class="facebook" style="padding-left:5px";><font style="color:#fff; float:left;font-size:14px;">Connect To Us!</font><br /><a href="http://www.facebook.com/pages/Austin-TX/Grand-Haven-Homes/145698837040?v=wall" target="_blank"><img src="/images/Facebook.png" alt="facebook" style="padding-left:5px;" /></a></div>';

document.write(facebookHtml);

