//Nightlife
var imgs2 = new Array();
var imgsLink2 = new Array();
imgs2[0] = 'http://aroundtown-oxford.com/ads/ads_nightlife1_420x126.jpg';
//imgs2[0] = 'http://aroundtown-oxford.com/ads/atAD_TheLevee.jpg';
//imgs2[2] = 'http://aroundtown-oxford.com/ads/ads_nightlife2_420x126.jpg';

imgsLink2[0] = 'http://aroundtown-oxford.com';
//imgsLink2[0] = 'http://aroundtown-oxford.com/the-levee/';
//imgsLink2[2] = 'http://aroundtown-oxford.com';

// delay in milliseconds between image swaps 1000 = 1 second 
var delay2 = 4200;
var counter2 = 0;
function randomImages2(){
	if(counter2 == (imgs2.length)){
		counter2 = 0;
	}
	document.getElementById("adlink2").href = imgsLink2[counter2];
	MM_swapImage('rotator2', '', imgs2[counter2++]);
	setTimeout('randomImages2()', delay2);
}

