var i = 0;
var iSlides = new Array(
  "Featured_Oxford_House_banner.jpg", 
  "chapel_banner.jpg",
  "YOUNG AND TALENTED scroll.jpg",
  "East London Acting School_banner.jpg",
  "It Could Be You Finger_banner.jpg",
  "SIMONE PUBLICITY_banner.jpg"
);
var iDescr = new Array(
  "Oxford House", 
  "Chapel for hire",
  "Young & Talented",
  "East London Acting School",
  "Chair & Trustees wanted",
  "Simone"
);
var iLinks = new Array(
  "/template.php?ID=2&PageName=introduction", 
  "/template.php?ID=14&PageName=chapel",
  "/template.php?ID=43&PageName=youngtalented",
  "/template.php?ID=140&PageName=eastlondonactingschool",
  "/template.php?ID=141&PageName=newchairandtrusteesrequired",
  "/template.php?ID=142&PageName=simone"
);

function iAnimate()
{
	$('iSlideFront').show();
	$('iSlideBack').show();
	$('iSlideFront').fade();
	$("iSlideFront").src = $("iSlideBack").src;

	i == (iSlides.length - 1) ? i = 0 : i++;
	$("iSlideBack").src = "./img/" + iSlides[i];
	$("iSlideLink").href = iLinks[i];
	$("iSlideCaption").innerHTML = iDescr[i];
	setTimeout('iAnimate()', 4000);
}

function init(){
	createRoundedness(2);
	iAnimate();
}

window.onload = init;




