var showPhotos = new Array(
		'images/postshow/images/IMG_3677.jpg',
		'images/postshow/images/IMG_3544.jpg',
		'images/postshow/images/IMG_3545.jpg',
		'images/postshow/images/IMG_7792.jpg',
		'images/postshow/images/IMG_7796.jpg',
		'images/postshow/images/IMG_3552.jpg',
		'images/postshow/images/IMG_3555.jpg',
		'images/postshow/images/IMG_7652.jpg',
		'images/postshow/images/IMG_7707.jpg',
		'images/postshow/images/PAH_20070927.jpg',
		'images/postshow/images/PAH_20070927_8211.jpg',
		'images/postshow/images/PAH_20070927_8174.jpg',
		'images/postshow/images/IMG_8049',
		'images/postshow/images/IMG_7766.jpg',
		'images/postshow/images/IMG_3579.jpg',
		'images/postshow/images/IMG_3588.jpg',
		'images/postshow/images/IMG_8069.jpg',
		'images/postshow/images/IMG_8106.jpg',
		'images/postshow/images/IMG_3502.jpg',
		'images/postshow/images/IMG_3522.jpg',
		'images/postshow/images/IMG_7895.jpg',
		'images/postshow/images/IMG_7925.jpg',
		'images/postshow/images/IMG_7917.jpg',
		'images/postshow/images/PAH_20070926_7831.jpg',
		'images/postshow/images/PAH_20070926_7814.jpg',
		'images/postshow/images/IMG_7998.jpg',
		'images/postshow/images/IMG_8013.jpg',
		'images/postshow/images/IMG_8044.jpg',
		'images/postshow/images/IMG_7858.jpg',
		'images/postshow/images/IMG_7947.jpg',
		'images/postshow/images/IMG_8072.jpg',
		'images/postshow/images/IMG_8076.jpg',
		'images/postshow/images/IMG_8164.jpg',
		'images/postshow/images/IMG_8022.jpg'
	);
var old = 0;
var current = 0;
function init()
{
	if (!document.images) return
	while (current == old)
	{
		current = Math.floor(Math.random()*showPhotos.length);
	}
	old = current;
	document.images['xImage'].src = showPhotos[current];
	setTimeout('init()',5000);
}


