// Author: Michael Tutino

<!-- Lobels Home page main Photo Rotation -->

//get random item number
var randomnumber=Math.floor(Math.random()*8);

//set image link based on item number
function fprod(){
	//- Lamb Rack
	if (randomnumber==0){
		parent.document.location.href="store/main/item.asp?item=13";
	}	
	//- Pork Rib Roast
	if (randomnumber==1){
		parent.document.location.href="store/main/item.asp?item=101";
	}
	//- Grilled Wyoming Burger
	if (randomnumber==2){
		parent.document.location.href="store/main/item.asp?item=47";
	}	
	//- Grilled Prime Cowboy
	if (randomnumber==3){
		parent.document.location.href="store/main/item.asp?item=99";
	}
	//- Grilled Natural Filet
	if (randomnumber==4){
		parent.document.location.href="store/main/item.asp?item=285";
	}
	//- Grilled Prime Porterhouse
	if (randomnumber==5){
		parent.document.location.href="store/main/item.asp?item=5";
	}
	//- Grilled Prime Steaks
	if (randomnumber==6){
		parent.document.location.href="store/main/beef.asp";
		}
	//- Hot Dog
	if (randomnumber==7){
		parent.document.location.href="store/main/item.asp?item=116";
		}
}
<!-- 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\" />");
}
