var prod=new Array();
prod[0]="http://www.tyneshalewis.com/images/header_image6.jpg";

function displayRandomPicture() {
	var index=(Math.round(100*Math.random()) % prod.length);
	document.write('<img border="0" width="355" height="208" src="'+prod[index]+'">');
}
