	function home_ovr(){
	document.home.src = "images/o1.jpg"
	}
	function home_out(){
	document.home.src = "images/n1.jpg"
	}
	function about_ovr(){
	document.about.src = "images/o2.jpg"
	}
	function about_out(){
	document.about.src = "images/n2.jpg"
	}
	function product1_ovr(){
	document.product1.src = "images/o3.jpg"
	}
	function product1_out(){
	document.product1.src = "images/n3.jpg"
	}	
	function product_ovr(){
	document.product.src = "images/o3.jpg"
	}
	function product_out(){
	document.product.src = "images/n3.jpg"
	}	
	function good_ovr(){
	document.good.src = "images/o4.jpg"
	}
	function good_out(){
	document.good.src = "images/n4.jpg"
	}	
	function wholesale_ovr(){
	document.wholesale.src = "images/o5.jpg"
	}
	function wholesale_out(){
	document.wholesale.src = "images/n5.jpg"
	}	
	function gallery_ovr(){
	document.gallery.src = "images/o6.jpg"
	}
	function gallery_out(){
	document.gallery.src = "images/n6.jpg"
	}
	function account_out(){
	document.account.src = "images/n7.jpg"
	}
	function account_ovr(){
	document.account.src = "images/o7.jpg"
	}
	function contact_out(){
	document.contact.src = "images/n8.jpg"
	}
	function contact_ovr(){
	document.contact.src = "images/o8.jpg"
	}


	//Advanced Email Check credit-
	//By JavaScript Kit (http://www.javascriptkit.com)
	//Over 200+ free scripts here!

	var testresults;
	function checkemail(){
	var str=document.validation.emailcheck.value;
	var filter=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i;
	if (filter.test(str))
	testresults=true;
	else{
	alert("Please input a valid email address!")
	testresults=false;
	}
	return (testresults);
	}

	function checkbae(){
	if (document.layers||document.getElementById||document.all)
	return checkemail();
	else
	return true;
	}
