// Author: Michael Tutino

<!-- Lobels Home page main Photo Rotation -->

//get random item number
var randomnumber=Math.floor(Math.random()*1);

//set image link based on item number
function fprod(){
	//- Turkey
	if (randomnumber==0){
		parent.document.location.href="store/main/item.asp?item=458";
	}	
}
<!-- end home page rotation -->

function mymainphoto(){
	return document.write("<img src=\"graphics/homev2_rotation/mainphoto"+randomnumber+".jpg\" width=\"327\" height=\"299\" border=\"0\" id=\"mainphoto2\" />");
}
