


if (pageName == "home")
	document.writeln('<img id="button_home" src="images/button_home_on.gif" alt="HOME" width="35" height="15" border="0"/>');
else
	document.writeln('<a href="index.html" target="_self"><img id="button_home" src="images/button_home_off.gif" alt="HOME" width="35" height="15" border="0" onmouseover="rollOverNav(this,\'home\');" onmouseout="rollOutNav(this,\'home\');"/></a>');

if (pageName == "photos")
	document.writeln('<img id="button_photos" src="images/button_photos_on.gif" width="48" height="15" alt="PHOTOS" border="0" />');
else
	document.writeln('<a href="photos.html" target="_self"><img id="button_photos" src="images/button_photos_off.gif" width="48" height="15" alt="PHOTOS" border="0" onmouseover="rollOverNav(this,\'photos\');" onmouseout="rollOutNav(this,\'photos\');"/></a>');

if (pageName == "services")
	document.writeln('<img id="button_services" src="images/button_services_on.gif" width="57" height="15" alt="SERVICES" border="0" />');
else
	document.writeln('<a href="services.html" target="_self"><img id="button_services" src="images/button_services_off.gif" width="57" height="15" alt="SERVICES" border="0" onmouseover="rollOverNav(this,\'services\');" onmouseout="rollOutNav(this,\'services\');"/></a>');
	
if (pageName == "contact")
	document.writeln('<img id="button_contact" src="images/button_contact_on.gif" width="53" height="15" alt="CONTACT" border="0" />');
else
	document.writeln('<a href="contact.php" target="_self"><img id="button_contact" src="images/button_contact_off.gif" width="53" height="15" alt="CONTACT" border="0" onmouseover="rollOverNav(this,\'contact\');" onmouseout="rollOutNav(this,\'contact\');"/></a>');
	
if (pageName == "questions")
	document.writeln('<img id="button_questions" src="images/button_questions_on.gif" width="118" height="15" alt="COMMON QUESTIONS" border="0" />');
else
	document.writeln('<a href="questions.html" target="_self"><img id="button_questions" src="images/button_questions_off.gif" width="118" height="15" alt="COMMON QUESTIONS" border="0" onmouseover="rollOverNav(this,\'questions\');" onmouseout="rollOutNav(this,\'questions\');"/></a>');

function rollOverNav( img, name )
{
	img.src = 'images/button_' +name+ '_on.gif';
}

function rollOutNav( img, name )
{
	if (pageName != name)	
		img.src = 'images/button_' +name+ '_off.gif';
}