document.write('<img name="rotating_picture" src="images/turkey/210x175/turkey01.jpg" width="143" height="100">\n');
var pic = new Array
(
	"images/turkey/210x175/turkey01.jpg",
	"images/turkey/210x175/turkey02.jpg",
	"images/turkey/210x175/turkey03.jpg",
	"images/turkey/210x175/turkey04.jpg",
	"images/turkey/210x175/turkey05.jpg",
	"images/turkey/210x175/turkey06.jpg",
	"images/turkey/210x175/turkey07.jpg",
	"images/turkey/210x175/turkey08.jpg",
	"images/turkey/210x175/turkey10.jpg",
	"images/turkey/210x175/turkey11.jpg",
	"images/turkey/210x175/turkey13.jpg",
	"images/turkey/210x175/turkey14.jpg",
	"images/turkey/210x175/turkey19.jpg",
	"images/turkey/210x175/turkey20.jpg",
	"images/turkey/210x175/turkey21.jpg",
	"images/turkey/210x175/turkey22.jpg",
	"images/turkey/210x175/turkey23.jpg",
	"images/turkey/210x175/turkey24.jpg"	
	/* 
	"images/210x175/bakery_01.gif",
	"images/210x175/deli_01.gif",
	"images/210x175/floral_02.gif",
	"images/210x175/meat_02.gif",
	"images/210x175/produce_02.gif",
	"images/210x175/seafood_01.gif",
	"images/210x175/deli_05.gif",
	"images/210x175/produce_03.gif",
	"images/210x175/floral_03.gif",
	"images/210x175/deli_06.gif",
	"images/210x175/meat_06.gif",
	"images/210x175/produce_07.gif",
	"images/210x175/deli_02.gif",
	"images/210x175/produce_08.gif",
	"images/graphic_archive/topleft_280x234/food0.gif",
	"images/graphic_archive/topleft_280x234/food1.gif",
	"images/graphic_archive/topleft_280x234/food2.gif",
	"images/graphic_archive/topleft_280x234/food3.gif",
	"images/graphic_archive/topleft_280x234/food4.gif",
	"images/graphic_archive/topleft_280x234/food5.gif",
	"images/graphic_archive/topleft_280x234/food6.gif",
	"images/graphic_archive/topleft_280x234/food7.gif",
	"images/graphic_archive/topleft_280x234/food8.gif",
	"images/graphic_archive/topleft_280x234/food9.gif"
/*	"images/graphic_archive/topleft_280x234/food10.gif",
	"images/graphic_archive/topleft_280x234/food11.gif",
	"images/graphic_archive/topleft_280x234/food12.gif",
	"images/graphic_archive/topleft_280x234/food13.gif",
	"images/graphic_archive/topleft_280x234/food14.gif",
	"images/graphic_archive/topleft_280x234/food15.gif",
	"images/graphic_archive/topleft_280x234/food16.gif",
	"images/graphic_archive/topleft_280x234/food17.gif",
	"images/graphic_archive/topleft_280x234/food18.gif"
*/
);
var i = 0;
var cur_pic = new Image();
cur_pic.src = pic[i];

start_show();

function start_show(){
	setInterval("slideshow()", 5000);
}
function slideshow(){
	i++;
	if (i == pic.length){
		i = 0;
	}
cur_pic.src = pic[i];
document["rotating_picture"].src = cur_pic.src;
}


