var mst_image_pos = 1, mst_image_count = 0;

jQuery(document).ready(function(){
	mst_image_count = jQuery('.mst_image_obj').length;
	jQuery('.image_arrow_left').click(function(){
		mst_image_pos--;
		if (mst_image_pos < 1)
			mst_image_pos = mst_image_count;
		changePropetyImage(mst_image_pos);
	});

	jQuery('.image_arrow_right').click(function(){
		mst_image_pos++;
		if (mst_image_pos > mst_image_count)
			mst_image_pos = 1;
		changePropetyImage(mst_image_pos);
	});

	jQuery('#map_view').click(function() {
		jQuery('html, body').animate({scrollTop: jQuery('#container').height()}, 800);
	});

	jQuery('#request_details').colorbox();
});

function changePropetyImage(inx) {
	mst_image_pos = inx;
	jQuery('#mst_image_obj').attr('src', jQuery('#mst_image_obj_' + inx).attr('rel'));
	jQuery('#image_number_box').html(mst_image_pos);
}

