//Year Timestamp
function date() {
	var currentTime = new Date()
	var year = currentTime.getFullYear()
	document.write(year)
}

//Button Rollovers
function homeover()
{
	document.getElementById("home").src="images/nav_home_over.png";
}
function homeout()
{
	document.getElementById("home").src="images/nav_home.png";
}
function manufacturingover()
{
	document.getElementById("manufacturing").src="images/nav_manufacturing_over.png";
}
function manufacturingout()
{
	document.getElementById("manufacturing").src="images/nav_manufacturing.png";
}
function productsover()
{
	document.getElementById("products").src="images/nav_products_over.png";
}
function productsout()
{
	document.getElementById("products").src="images/nav_products.png";
}
function servicesover()
{
	document.getElementById("services").src="images/nav_services_over.png";
}
function servicesout()
{
	document.getElementById("services").src="images/nav_services.png";
}
function contactusover()
{
	document.getElementById("contactus").src="images/nav_contactus_over.png";
}
function contactusout()
{
	document.getElementById("contactus").src="images/nav_contactus.png";
}