temp = document.location.href;

	tempArray = temp.split("/");
	locName = tempArray[tempArray.length-1];
	locArray = locName.split(".");
	pageName=locArray[0];
	
function goTo(loc) {
	
	if ( (loc=="support") || (loc=="news")  || (loc=="explore") )  {
		document.location.replace(loc+'.php');
	} else if( loc=="donate" ){
		document.location.replace(loc+'.jsp');
	} else {
		document.location.replace(loc+'.html');
	}
}
	
document.write('<table cellpadding="0" cellspacing="0" border="0" width="166" ><tr>');

if (pageName.indexOf("about")>=0){
		document.write('<td valign="top" align="left" class="navLinkOnTop" width="166">ABOUT  AFL</td>');
	} else {
		document.write('<td class="navLinkTop" onmouseover="this.style.backgroundColor=\'#D48805\';" onmouseout="this.style.backgroundColor=\'#FD7516\';" onClick="goTo(\'about\');" width="166">ABOUT  AFL</td>');
		
	}
	
	document.write('</tr><tr>');
	
if (pageName.indexOf("inus")>=0){
		document.write('<td valign="top" align="left" class="navLinkOn" width="166">THE LOUVRE IN THE US</td>');
	} else {
		document.write('<td class="navLink" onmouseover="this.style.backgroundColor=\'#D48805\';" onmouseout="this.style.backgroundColor=\'#FD7516\';"  onClick="goTo(\'inus\');"  width="166">THE LOUVRE IN THE US</td>');
		
	}	
	
	document.write('</tr><tr>');
	
if (pageName.indexOf("support")>=0){
		document.write('<td valign="top" align="left" class="navLinkOn" width="166">SUPPORT AFL</td>');
	} else {
		document.write('<td class="navLink" onmouseover="this.style.backgroundColor=\'#D48805\';" onmouseout="this.style.backgroundColor=\'#FD7516\';"  onClick="goTo(\'support\');" width="166">SUPPORT AFL</td>');
		
	}	
	
	document.write('</tr><tr>');
	
if (pageName.indexOf("news")>=0){
		document.write('<td valign="top" align="left" class="navLinkOn" width="166">NEWS AND EVENTS</td>');
	} else {
		document.write('<td class="navLink" onmouseover="this.style.backgroundColor=\'#D48805\';" onmouseout="this.style.backgroundColor=\'#FD7516\';" onClick="goTo(\'news\');"  width="166">NEWS AND EVENTS</td>');
		
	}	
	
	document.write('</tr><tr>');
	
if (pageName.indexOf("explore")>=0){
		document.write('<td valign="top" align="left" class="navLinkOn" width="166">DISCOVER THE LOUVRE</td>');
	} else {
		document.write('<td class="navLink" onmouseover="this.style.backgroundColor=\'#D48805\';" onmouseout="this.style.backgroundColor=\'#FD7516\';"  onClick="goTo(\'explore\');"  width="166">DISCOVER THE LOUVRE</td>');
		
	}	
		document.write('</tr><tr>');
	
if (pageName.indexOf("faqprivacypolicy")>=0){
		document.write('<td valign="top" align="left" class="navLinkOn" width="166">FAQ / PRIVACY POLICY</td>');
	} else {
		document.write('<td class="navLink" onmouseover="this.style.backgroundColor=\'#D48805\';" onmouseout="this.style.backgroundColor=\'#FD7516\';" onClick="goTo(\'faqprivacypolicy\');"  width="166">FAQ / PRIVACY POLICY</td>');
		
	}	
			document.write('</tr><tr>');
	
if (pageName.indexOf("donate")>=0){
		document.write('<td valign="top" align="left" class="navLinkOnBottom" width="166">DONATE</td>');
	} else {
		document.write('<td class="navLinkBottom" onmouseover="this.style.backgroundColor=\'#D48805\';" onmouseout="this.style.backgroundColor=\'#FD7516\';" onClick="goTo(\'donate\');" width="166">DONATE</td>');
		
	}	
	document.write('</tr></table>');



