// JavaScript Document

function alertFeature()
{
	alert("hey");
}

function imageSwap(image)
{
	document.getElementById('wheel').src = image;
}

function imageSwapOut()
{
	document.getElementById('wheel').src = './images/home_page/WheelGraphic01.gif';
}