var imgNo1 = 1
var image1= new Image();
image1.src='Runtime/Uploads/CyclicImages/Image of ship from front.jpg'
image1.alt='Credit Insure'
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.location.href='default.aspx';

}
