document.write('<img name="picture_r" align="right" src="images/turkey/275x175/turkey09.jpg" width="143" height="100">\n');
var pic_r = new Array
(
	"images/turkey/275x175/turkey09.jpg",
	"images/turkey/275x175/turkey15.jpg",
	"images/turkey/275x175/turkey16.jpg",
	"images/turkey/275x175/turkey17.jpg",
	"images/turkey/275x175/turkey18.jpg",
	"images/250x175/seafood_02.gif",
	"images/250x175/produce_06.gif",
	"images/250x175/meat_05.gif",
	"images/250x175/deli_08.gif",
	"images/250x175/floral_01.gif",
	"images/250x175/bakery_02.gif",
	"images/250x175/produce_05.gif",
	"images/250x175/meat_04.gif",
	"images/250x175/deli_07.gif",
	"images/250x175/produce_04.gif",
	"images/250x175/meat_03.gif",
	"images/250x175/deli_04.gif",
	"images/250x175/produce_01.gif",
	"images/250x175/meat_01.gif",
	"images/250x175/deli_03.gif",
	"images/graphic_archive/topright_340x234/food_01.gif",
	"images/graphic_archive/topright_340x234/food_02.gif",
	"images/graphic_archive/topright_340x234/food_03.gif",
	"images/graphic_archive/topright_340x234/food_04.gif",
	"images/graphic_archive/topright_340x234/food_05.gif",
	"images/graphic_archive/topright_340x234/food_06.gif",
	"images/graphic_archive/topright_340x234/food_07.gif",
	"images/graphic_archive/topright_340x234/food_08.gif",
	"images/graphic_archive/topright_340x234/food_09.gif",
	"images/graphic_archive/topright_340x234/food_10.gif",
	"images/graphic_archive/topright_340x234/food_11.gif",
	"images/graphic_archive/topright_340x234/food_12.gif",
	"images/graphic_archive/topright_340x234/food_13.gif", 
	"images/graphic_archive/topright_340x234/food_14.gif",
	"images/graphic_archive/topright_340x234/food_15.gif"
	/* */
);
var j = 0;
var cur_pic_r = new Image();
cur_pic_r.src = pic_r[j];

start_show_r();

function start_show_r(){
	setInterval("slideshow_r()", 8000);
}
function slideshow_r(){
	j++;
	if (j == pic_r.length){
		j = 0;
	}
cur_pic_r.src = pic_r[j];
document["picture_r"].src = cur_pic_r.src;
}


