function showInteriorImage( hash ) {
	hash = hash.replace( /.*#/, '' );
	image = document.getElementById(hash)
	offset_top = image.offsetTop;
	$('#interior_images').animate( {'scrollTop':offset_top}, 'fast' );
	return false;
}
