myPic2 = new Array;
myPic2["/images/topbanners/b_01.jpg"] = '/content.jsp?articleId=138';
myPic2["/images/topbanners/b_02.jpg"] = '/content.jsp?articleId=801';
myPic2["/images/topbanners/b_03.jpg"] = '/content.jsp?articleId=797';
//myPic2["/images/topbanners/b_04.jpg"] = '/content.jsp?articleId=810';
myPic2["/images/topbanners/b_05.jpg"] = '/content.jsp?articleId=806';
//myPic2["/images/topbanners/b_06.jpg"] = '/content.jsp?articleId=796';
myPic2["/images/topbanners/b_07.jpg"] = '/content.jsp?articleId=800';
myPic2["/images/topbanners/b_08.jpg"] = '/content.jsp?articleId=807';
myPic2["/images/topbanners/b_09.jpg"] = '/content.jsp?articleId=826';
myPic2["/images/topbanners/b_11.jpg"] = '/concerts0708superpops';
myPic2["/images/topbanners/b_12.jpg"] = '/content.jsp?articleId=824';
// myPic2["/images/topbanners/b_13.jpg"] = ;
//myPic2["/images/topbanners/b_14.jpg"] = '/content.jsp?articleId=804';
myPic2["/images/topbanners/b_15.jpg"] = '/content.jsp?articleId=809';
myPic2["/images/topbanners/b_16.jpg"] = '/content.jsp?articleId=808';
myPic2["/images/topbanners/b_17.jpg"] = '/content.jsp?articleId=797';
myPic2["/images/topbanners/b_18.jpg"] = '/orchestraconductingstaff';
//myPic2["/images/topbanners/b_19.jpg"] = '/content.jsp?articleId=796';
myPic2["/images/topbanners/b_20.jpg"] = '/content.jsp?articleId=802';
myPic2["/images/topbanners/b_21.jpg"] = '/content.jsp?articleId=444';
myPic2["/images/topbanners/b_22.jpg"] = '/content.jsp?articleId=799';
myPic2["/images/topbanners/b_23.jpg"] = '/content.jsp?articleId=803';

var item_count = 0;
for (var item in myPic2) {
	item_count++;
}

function choosePic() {
	if (document.images) {
		var randomNum = Math.floor ((Math.random() * item_count));
		var count = 0;
		for (var item in myPic2) {
			count++;
			if (count == randomNum) {
				document.myPicture2.src = item;
				document.getElementById("myPicture2Link").href = myPic2[item];
			}
		}
	}
}

