function displayAllPhoto(){
	if ((typeof(detailsPage) !== 'undefined') && (detailsPage == 1)){
		var _post = {
				mls : $('input[name="mls"]').val(),
				size: $('input[name="size"]').val(),
		}
		$.post('property-search/ajax-display-all-images',_post, function(data) {
			$('#ajax-photo').html(data);
			if (data.search("startShowGallery123") != -1){
				$('#all_photos').css ("display","block");
				startGallery();
			}
		},"text")
		return false;
	}else 
		return false;
}

