function change_bob_photo (listing,photo)
{
	var CURRENT_PHOTO = document.getElementById('CURRENT_PHOTO').value;
	document.getElementById('PHOTO_' + CURRENT_PHOTO).style.background='#FFFFFF';
	document.getElementById('PHOTO_' + photo).style.background='#444444';
	document.getElementById('CURRENT_PHOTO').value=photo;
	document.getElementById('MAIN_PHOTO').src='/images/listing/' + listing + '.' + photo + '.jpg';
}

function change_photo (listing,photo)
{
	var CURRENT_PHOTO = document.getElementById('CURRENT_PHOTO').value;
	document.getElementById('PHOTO_' + CURRENT_PHOTO).style.background='#FFFFFF';
	document.getElementById('PHOTO_' + photo).style.background='#444444';
	document.getElementById('CURRENT_PHOTO').value=photo;
	document.getElementById('MAIN_PHOTO').src='http://idx.stgeorge.biz/img/listing/' + listing + '/' + listing + '_' + photo + '.MID.jpg';
}











