function swapimage()
{
	theimages = new Array("1.jpg", "2.jpg", "3.jpg", "4.jpg", "5.jpg", "6.jpg");
	whichimage = Math.floor(Math.random()*theimages.length);
	document.write('<img src="templates/default/images/' +theimages[whichimage]+ '">');
}
