// JavaScript Document

URL = window.location.href;  
indexhtml = (URL.indexOf('index.') > -1);  
productshtml = (URL.indexOf('products.') > -1);  
kelleyhtml = (URL.indexOf('kelley.') > -1);  
albanyhtml = (URL.indexOf('albany.') > -1);  
contacthtml = (URL.indexOf('contact.') > -1);  

window.onload = function navigations()

{  
	if (indexhtml) {  
	var x=document.getElementById("index");  
	document.index.src='/images/button_home_on.gif';  
	}  
	
	else if (productshtml){  
	var x=document.getElementById("products");  
	document.products.src='/images/button_products_on.gif';  
	}  
	
	else if (kelleyhtml){  
	var x=document.getElementById("kelley");  
	document.kelley.src='/images/button_kelley_on.gif';  
	}  
	
	else if (albanyhtml){  
	var x=document.getElementById("albany");  
	document.albany.src='/images/button_albany_on.gif';
	}  
	
	else if (contacthtml){  
	var x=document.getElementById("contact");  
	document.contact.src='/images/button_contact_on.gif';
	}  

}  
