// Script Author: ricocheting.com
// Description: Slideshow that allows visitors to flip through a series of photos on your website

var x=0;
var timeOut=5000;

function rotate(num){
sl=document.slide_form.slide;
x=num%sl.length;
if(x<0){x=sl.length-1};
document.images.show.src=sl.options[x].value;
if (x==0) document.slide_form.banner.value="GALA DINNER";
else document.slide_form.banner.value="RECRUITMENT DRIVE 2009";
if (x==0) document.slide_form.content.value="Join us in celebrating 10 years of bringing financial literacy to the student population";
else document.slide_form.content.value="Invest in yourself, Invest in IIC. Check out the schedule here";

sl.selectedIndex=x;}

function auto(timeOut) {
rotate(++x);window.setTimeout("auto(timeOut)", timeOut);}

function goto(num) {
sl=document.slide_form.slide;
x=num%sl.length;
if(x<0){x=sl.length-1};
if (x==1) window.location="http://www.ntu-iic.org/index.php/component/content/article/120-ntu-iic-recruitment-drive";
else window.location="http://www.ntu-iic.org/galadinner";
}

window.onload=function(){

	auto();
}
