var imgNo1 = 4
var image1= new Image();
image1.src='../Pages/Uploads/CyclicImages/CARETTA-CARETTA-TURTLE.jpg'
image1.alt='caretta'
var image2= new Image();
image2.src='../Pages/Uploads/CyclicImages/iStock_000009457043Small.jpg'
image2.alt='Olives'
var image3= new Image();
image3.src='../Pages/Uploads/CyclicImages/PAPHOS-FORT-AND-HARBOUR.jpg'
image3.alt='Harbour'
var image4= new Image();
image4.src='../Pages/Uploads/CyclicImages/TOMBS-OF-THE-KINGS-NR-2.jpg'
image4.alt='tombs'
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()",3000);
}
function slidelink()
{
if (whichimage==1)
window.open('http://www.google.com');
else if (whichimage==2)
window.open('http://www.google.com');
else if (whichimage==3)
window.open('http://www.google.com');
else if (whichimage==4)
window.open('http://www.google.com');

}
