$(function() {
	$('.prop-thumb').click(function() {
		if(!$(this).hasClass('open')) {
			$('.prop-thumb.open').removeClass('open');
			$('.prop-image.open').removeClass('open').fadeOut();
			image = '#prop-image-'+$(this).attr('id').replace('prop-thumb-','');
			$(image).addClass('open').fadeIn();
			$(this).addClass('open');
		}
	});
	$('.prop-thumb:first').click();
	$('.map').click(function() {
		$.facebox($('#map-hidden').html());
		return false;
	});
});