
//Start Random Photo Loader Code
ProductImages=new Array();
ProductImages[0]='featured/pallet_fork.gif';
ProductImages[1]='featured/trash_grapple_bucket.gif';
ProductImages[2]='featured/low_profile_bucket.gif';
ProductImages[3]='featured/quick_tach.gif';
ProductImages[4]='featured/3_point_bale_mover.gif';
ProductImages[5]='featured/snow_pusher.gif';

function newImage()
{
	document.getElementById("productImage").setAttribute("src", ProductImages[Math.round(Math.random()*5)])
	//document.getElementById("productImage").href="http://www.lrmfg.com/products.html"
}


