document.write('<img name="topcenter" src="images/210x175/produce_07.gif" width="143" height="100">\n');
var pic_center = new Array
(
	"images/turkey/210x175/turkey05.jpg",
	"images/graphic_archive/topleft_280x234/food7.gif",
	"images/210x175/deli_06.gif",
	"images/graphic_archive/topleft_280x234/food6.gif",
	"images/turkey/210x175/turkey10.jpg",
	"images/food/food_09.jpg",
	"images/210x175/produce_07.gif",
	"images/food/food_12.jpg",
	"images/turkey/210x175/turkey21.jpg",
	"images/210x175/produce_02.gif",
	"images/food/food_14.jpg",
	"images/turkey/210x175/turkey02.jpg",
	"images/turkey/210x175/turkey04.jpg",
	"images/graphic_archive/topleft_280x234/food1.gif",
	"images/210x175/deli_05.gif",
	"images/graphic_archive/topleft_280x234/food10.gif",
	"images/food/food_02.jpg",
	"images/food/food_05.jpg",
	"images/turkey/210x175/turkey20.jpg",
	"images/food/food_03.jpg",
	"images/graphic_archive/topleft_280x234/food3.gif",
	"images/turkey/210x175/turkey24.jpg",
	"images/turkey/210x175/turkey07.jpg",
	"images/graphic_archive/topleft_280x234/food0.gif",
	"images/food/food_04.jpg",
	"images/food/food_01.jpg",
	"images/turkey/210x175/turkey14.jpg",
	"images/graphic_archive/topleft_280x234/food11.gif",
	"images/graphic_archive/topleft_280x234/food14.gif",
	"images/turkey/210x175/turkey03.jpg",
	"images/graphic_archive/topleft_280x234/food12.gif",
	"images/food/food_11.jpg",
	"images/turkey/210x175/turkey13.jpg",
	"images/210x175/produce_08.gif",
	"images/210x175/meat_02.gif",
	"images/graphic_archive/topleft_280x234/food13.gif",
	"images/food/food_13.jpg",
	"images/turkey/210x175/turkey06.jpg",
	"images/graphic_archive/topleft_280x234/food2.gif",
	"images/210x175/deli_01.gif",
	"images/food/food_07.jpg",
	"images/turkey/210x175/turkey08.jpg",
	"images/graphic_archive/topleft_280x234/food15.gif",
	"images/210x175/seafood_01.gif",
	"images/graphic_archive/topleft_280x234/food9.gif",
	"images/graphic_archive/topleft_280x234/food5.gif",
	"images/food/food_10.jpg",
	"images/graphic_archive/topleft_280x234/food17.gif",
	"images/turkey/210x175/turkey22.jpg",
	"images/210x175/produce_03.gif",
	"images/turkey/210x175/turkey01.jpg",
	"images/210x175/bakery_01.gif",
	"images/210x175/floral_03.gif",
	"images/graphic_archive/topleft_280x234/food4.gif",
	"images/turkey/210x175/turkey11.jpg",
	"images/graphic_archive/topleft_280x234/food8.gif",
	"images/210x175/floral_02.gif",
	"images/graphic_archive/topleft_280x234/food18.gif",
	"images/food/food_06.jpg",
	"images/turkey/210x175/turkey19.jpg",
	"images/graphic_archive/topleft_280x234/food16.gif",
	"images/food/food_08.jpg",
	"images/210x175/meat_06.gif",
	"images/turkey/210x175/turkey23.jpg",
	"images/210x175/deli_02.gif",
	"images/food/food_15.jpg"

);
var l = 0;
var cur_pic_center = new Image();
cur_pic_center.src = pic_center[l];

start_show_center();

function start_show_center(){
	setInterval("slideshow_center()", 10000);
}
function slideshow_center(){
	l++;
	if (l == pic.length){
		l = 0;
	}
cur_pic_center.src = pic_center[l];
document["topcenter"].src = cur_pic_center.src;
}