img = new Array();
img[0] = "http://www.caltrend.net/contents/wp-content/uploads/head01.jpg";
img[1] = "http://www.caltrend.net/contents/wp-content/uploads/head02.jpg";
img[2] = "http://www.caltrend.net/contents/wp-content/uploads/head03.jpg";
img[3] = "http://www.caltrend.net/contents/wp-content/uploads/head04.jpg";
img[4] = "http://www.caltrend.net/contents/wp-content/uploads/head05.jpg";
img[5] = "http://www.caltrend.net/contents/wp-content/uploads/head06.jpg";

function setBanner(){
	amount = img.length;
	No = Math.floor(Math.random()*amount);
	document.write("<img src='" + img[No] + "' border='0'>");
}