var imgNo1 = 4
var image1= new Image();
image1.src='../Runtime/Uploads/CyclicImages/flash_main.jpg'
image1.alt='test'
var image2= new Image();
image2.src='../Runtime/Uploads/CyclicImages/girl with plate.jpg'
image2.alt=''
var image3= new Image();
image3.src='../Runtime/Uploads/CyclicImages/ribs on chopping board_hompage.jpg'
image3.alt=''
var image4= new Image();
image4.src='../Runtime/Uploads/CyclicImages/Rib World Factory.jpg'
image4.alt='Rib World factory, Tipperary, Ireland'
var step=1
var whichimage=1;
var imgNo=imgNo1;
function slideit()
{
if (!document.images)
return;
if (document.all)
document.getElementById('slide').filters.blendTrans.apply();
document.getElementById('slide').src = eval("image" + step + ".src")
document.getElementById('slide').alt = eval("image" + step + ".alt")
if (document.all)
document.getElementById('slide').filters.blendTrans.play()
whichimage=step;
if (step<imgNo)
step++;
else
step = 1;
setTimeout("slideit()",4000);
}
function slidelink()
{
if (whichimage==1)
window.open('test');
else if (whichimage==2)
window.open('#');
else if (whichimage==3)
window.open('#');
else if (whichimage==4)
window.open('#');

}
