(function(){ //anonymous function for fading_glow effec on anchors
	var home=document.getElementById("home");
	var products=document.getElementById("products");
	var gallery=document.getElementById("gallery");
	var contact=document.getElementById("contact");
	var order=document.getElementById("order");
	home.onmouseover=function(){document.getElementById("homeglow").style.zIndex="4"};
	home.onmouseout=function(){document.getElementById("homeglow").style.zIndex="1"};
	products.onmouseover=function(){document.getElementById("productsglow").style.zIndex="4"};
	products.onmouseout=function(){document.getElementById("productsglow").style.zIndex="1"};
	gallery.onmouseover=function(){document.getElementById("galleryglow").style.zIndex="4"};
	gallery.onmouseout=function(){document.getElementById("galleryglow").style.zIndex="1"};
	contact.onmouseover=function(){document.getElementById("contactglow").style.zIndex="4"};
	contact.onmouseout=function(){document.getElementById("contactglow").style.zIndex="1"};
	order.onmouseover=function(){document.getElementById("orderglow").style.zIndex="4"};
	order.onmouseout=function(){document.getElementById("orderglow").style.zIndex="1"};
})();
