var property_image_pos = 1, property_image_count = 0;

jQuery(document).ready(function(){
	property_image_count = jQuery('.property_image_obj').length;
	jQuery('.image_arrow_left').click(function(){
		property_image_pos--;
		if (property_image_pos < 1)
			property_image_pos = property_image_count;
		changePropetyImage(property_image_pos);
	});

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

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

function changePropetyImage(inx) {
	property_image_pos = inx;
	
	jQuery('#property_image_obj').attr('src', jQuery('#property_image_obj_' + inx).attr('rel'));
	jQuery('#image_number_box').html(property_image_pos);
}
