// 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(){
		//- Brisket
	if (randomnumber==0){
		parent.document.location.href="/store/item.aspx?item=626";
	}
	//- Natural Prime Filet Mignon
	if (randomnumber==1){
		parent.document.location.href="/store/item.aspx?item=285";
	}
	//- Rack Roast of Pork
	if (randomnumber==2){
		parent.document.location.href="/store/item.aspx?item=101";
	}	
	//- Wagyu Hip Sirloin
	if (randomnumber==3){
		parent.document.location.href="/store/item.aspx?item=118";
	}	
	//- Veal Loin Medallions
	if (randomnumber==4){
		parent.document.location.href="/store/item.aspx?item=86";
	}	
	//- Strip Steak
	if (randomnumber==5){
		parent.document.location.href="/store/item.aspx?item=7";
	}	
	//- Lamb Rib Chops
	if (randomnumber==6){
		parent.document.location.href="/store/item.aspx?item=12";
	}	
	//- Prime Rib Roast
	if (randomnumber==7){
		parent.document.location.href="/store/item.aspx?item=8";
	}		
	}
<!-- 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\" />");
}

