	function str_repeat(str, times){
		output = ''
		for(i=1; i<=times; i++){
			output = output + str;
		}
		return output;
	}
	// image rotation script
	var arrImages = new Array();
	arrImages[0] = '<a href="http://www.lifeline-fire.co.uk/fireextinguisher/motorsport.asp"><img src="http://www.lifeline-fire.co.uk/pics/home_animation_02.jpg" width="356" height="200" alt="Fire Extinguisher Zero 360 (FIA)" title="Fire Extinguisher Zero 360 (FIA)" /></a>';
	arrImages[1] = '<a href="http://www.lifeline-fire.co.uk/fireextinguisher/automaticsystems.asp"><img src="http://www.lifeline-fire.co.uk/pics/home_animation_03.jpg" width="356" height="200" alt="Automatic Fire Systems" title="Automatic Fire Systems" /></a>';
	arrImages[2] = '<a href="http://www.lifeline-fire.co.uk/motorsport/rollbarpadding.asp"><img src="http://www.lifeline-fire.co.uk/pics/home_animation_04.jpg" width="356" height="200" alt="Roll Cage Padding" title="Roll Cage Padding" /></a>';
	arrImages[3] = '<a href="http://www.lifeline-fire.co.uk/quickrelease/steeringboss.asp"><img src="http://www.lifeline-fire.co.uk/pics/home_animation_05.jpg" width="356" height="200" alt="Quick Release Steering Boss" title="Quick Release Steering Boss" /></a>';
	arrImages[4] = '<a href="http://www.lifeline-fire.co.uk/motorsport/rainlight.asp"><img src="http://www.lifeline-fire.co.uk/pics/home_animation_01.jpg" width="356" height="200" alt="Motorsport Rain Light" title="Motorsport Rain Light" /></a>';
	var thisIndex = 0;
	function autoSwitchImages(depth){
		path = str_repeat("../", depth);
		document.getElementById('banner').innerHTML = arrImages[thisIndex];
		if(thisIndex == arrImages.length-1){
			thisIndex = 0;
		} else {
			thisIndex++;
		}
		setTimeout("autoSwitchImages("+depth+")",5000);
	}
	setTimeout("autoSwitchImages(1)",5000);
	