    var i = 0
    var x = 0
           
var imgCaption=new Array(3)
     imgCaption[0]="We welcome club rolling road days. Call us now to book your car for a Power Run for from £35.00. We organised a Rolling road day for Shed Motorsport, see <b><a href='Gallery-archive.asp?loadpic=0&cat=Club%20Rolling%20Road%20Day%202009&from=0&page=1'>more pictures</a></b> of the event.";
     imgCaption[1]="AFR Tuning are pleased to announce that we have received full accreditation and authorisation to be an HKS approved Power Writer.  Approval by HKS is only given to those with the proven expertise, and necessary equipment, to tune a car to the highest level.  HKS as a brand is synonymous with Japanese performance car modifications, so why not call us and see HKS can do for your car";
     imgCaption[2]="A leading authority on Performance Engine Design - appointed by Austec Racing. David Vizard has a huge following and has written over 4000 articles and papers plus 30 books on performance engine building and design theory. He has been a consultant to F1 entities such as Cosworth and McLaren as well as  corporate auto giants. Many of the major US performance companies also use him as a consultant. Look out for David’s regular column 'Performance Matters' only at www.austec.co.uk";

     var titleCaption=new Array(3)
     titleCaption[0]='Club Rolling Road Days';
     titleCaption[1]='AFR become an approved HKS F-Con dealer';
     titleCaption[2]='David Vizard Joins the Austec Racing team.';     

function imgAndCaption()
{
    var getCaption = imgCaption[0]+""
    var getTitle = titleCaption[0]+""
    document.getElementById('boldStuff').innerHTML = getCaption;
    document.getElementById('boldStuff2').innerHTML = getTitle;
    	
	setTimeout('rotateGallery()',22000) 
}

function rotateGallery()
{

NextImage();
setTimeout('rotateGallery()',22000) 
}

function changeText(){
  //   i=i+1
     var getCaption = imgCaption[i]+""
     var getTitle = titleCaption[i]+""
	document.getElementById('boldStuff').innerHTML = getCaption;
		document.getElementById('boldStuff2').innerHTML = getTitle;
	
//stuff for pix
    var pathName = "images/site_graphics/"
    var fileType = ".gif"
    myImage = new Image() ;
	
var imgSrc=new Array()
     imgSrc[0]= pathName+"club-rolling-road-days"+fileType+"";
     imgSrc[1]= pathName+"hks-dealer"+fileType+"";
     imgSrc[2]= pathName+"david-vizard-joins"+fileType+"";
	document.pic1.src = imgSrc[i]+"";	

	
}

function changeImage()
{
//x++;
changeText();
}

function NextImage()
{
if (i<2 && x<2) 
{
i=i+1;
x=x+1;
changeText(i);
}
else
{
i=0;
x=0;
changeText(i);
}
}

function PreviousImage()
{
if (i<0 && x<2) 
{
i=i-1;
x=x-1;
changeText(i);
}
else
{
i=0;
x=0;
changeText(i);
}
}


