// JavaScript Document
	function fixNavbar(){
		/*
		This JAVAScript removes the link from a tag.
		Make sure:
		1) Your body "id" is the same text as the menu item.
		2) You surround your original menu item "a href" with <span id="span[insert body id here]"> and </span>
		3) Do not reuse the span ID above elsewhere.  If need to do something elsewhere, i.e. second navbar in footer, will need to add additional codes.
		*/
		/*  Don't do anything anymore since this shouldn't occur thanks to templates.  Base random reviews on this though.
		var $targetTag = document.getElementsByTagName('body')[0].id;
		var $targetId = "span" + $targetTag;
		var $targetElement = document.getElementById($targetId);
		if( $targetElement != null ){
			$targetElement.innerHTML = $targetTag;
		}
		*/
	}
		
	function getReview(){
		var rootURL = "http://userintuition.com";
		var reviewText = new Array();
		reviewText[0]="<p>\"Li-Na designed and manages our condominium's website. Her attention to detail is exceptional. She was open to suggestions and worked with the website committee, surpassing their goals and expectations.\"</p><p id=\"name\">~Clarence S. Dungey,<br />Facility Manager, CCC No. 272<br /><a href=\"" + rootURL + "/portfolio/parkvista.html\">See what was done</a></p>";
		reviewText[1]="<p>\"Li-Na developed a beautiful, user-friendly site that is helpful to anyone who visits it. She is a pleasure to work with, and can turn \"geek-talk\" into something we can all understand. We would not hesitate to recommend Li-Na to you.\"</p><p id=\"name\">~Clarence S. Dungey,<br />Facility Manager, CCC No. 272<br /><a href=\"" + rootURL + "/portfolio/parkvista.html\">See what was done</a></p>";
		reviewText[2]="<p>\"Li-Na built a wonderful, functional site for me from the ground up based on just the few ideas I threw at her. The site exceeds even my highest expectations. A real bonus for me is being able to go in and make changes myself with live-updating.\"</p><p id=\"name\">~Shytei Corellian,<br />Author, Merehr<br /><a href=\"" + rootURL + "/portfolio/merehr.html\">See what was done</a></p>";
		reviewText[3]="<p>\"Great with support and answering all kinds of newbie questions, Li-Na also took a difficult hand drawn image and somehow managed to retouch and magnify it for the site. Thanks for the beautiful and web-friendly home base for my work!\"</p><p id=\"name\">~Shytei Corellian,<br />Author, Merehr<br /><a href=\"" + rootURL + "/portfolio/merehr.html\">See what was done</a></p>";
		reviewText[4]="<p>\"I know how ridiculous it is to expect someone to read your mind and understand what you want for a site design, but Li-Na managed to take my rambling descriptions of what I wanted and turn it into the perfect layout.\"</p><p id=\"name\">~Stacey Lee Feldmann,<br />Owner, Strange Land Costuming<br /><a href=\"" + rootURL + "/portfolio/strangeland.html\">See what was done</a></p>";
		reviewText[5]="<p>\"I can't believe how much my new site has increased efficiency! The inquiries I get now are much more well-informed because people have gone through the site and gotten their basic questions answered clearly...I'm not stuck trying to explain the same old things over and over again.\"</p><p id=\"name\">~Stacey Lee Feldmann,<br />Owner, Strange Land Costuming<br /><a href=\"" + rootURL + "/portfolio/strangeland.html\">See what was done</a></p>";
		var reviewSiteName = new Array();
		reviewSiteName[0] = "parkvista";
		reviewSiteName[1] = "parkvista";
		reviewSiteName[2] = "merehr";
		reviewSiteName[3] = "merehr";
		reviewSiteName[4] = "strangeland";
		reviewSiteName[5] = "strangeland";
		var maxReviews = 5;
		var currentSiteName = document.getElementsByTagName('body')[0].id;
		var siteName = "";
		var randomNumber;
		var review;
		do{
			randomNumber = Math.round(Math.random() * maxReviews);
			siteName = reviewSiteName[randomNumber];
			review = reviewText[randomNumber];
		} while( siteName == currentSiteName );
		var reviewText = "";
		var targetId = "jsreview";
		var targetElement = document.getElementById(targetId);
		if( targetElement != null && review != null ){
			targetElement.innerHTML = review;
		}
	}