$(document).ready(function() {
	
	
	// count up and insert the total number of slides in the slideshow (including the markup inside the td)
	$totalImages = $('div.gallery').children().length;
	$('div.listing_photo_nav td.mid_col').append("<span>1</span>&nbsp; of &nbsp;"+$totalImages);
	
	// ___________________ Properties detail page clickthrough slideshow _________________
	$(function() {
	    $('.gallery').cycle({
	        fx:     'fade',
	        speed:  'fast',
	        timeout: 0,
			after: 	 onAfter,
			prev:   '.listing_photo_nav td.left_arw',
			next: 	'.listing_photo_nav td.right_arw'
	    });
	});
		
	// 	_________________ insert current slide number into the span that was created at the beginning of the script _____________	
	function onAfter(curr, next, opts) {
		var $index = $(this).parent().children().index(this) + 1;
		$('div.listing_photo_nav td.mid_col span').empty().append($index);
	}
		

	
	
		
});