// JavaScript Document

function ptSwapIt() {
	var theImages = new Array;
	theImages[0] = 'banner01.jpg';
	theImages[1] = 'banner02.jpg';
	theImages[2] = 'banner03.jpg';
	theImages[3] = 'banner04.jpg';
	theImages[4] = 'banner05.jpg';
	theImages[5] = 'banner06.jpg';
	theImages[6] = 'banner07.jpg';
	var p = theImages.length;
	var whichImage = Math.round(Math.random()*(p-1));
	var ptNewProp = 'url(static/art/banners/'+theImages[whichImage]+')';
    document.getElementById('bannerAbout').style.backgroundImage = ptNewProp;

//document.getElementById('bannerAbout').style.backgroundImage = //'url(http://images.google.com/intl/en_ALL/images/images_hp.gif)';

}

