$(document).ready(function(){
	
	$('#prev_img').click(function () {
		
				c_pos--;
				if(c_pos<0)
					c_pos = (map.length-1);
					
				$("#main_img").attr('src', map[c_pos]);
				$('#img_descr').html(descr[c_pos]);
			});
			
	$('#next_img').click(function () {
		
				c_pos++;
				if(c_pos==map.length)
					c_pos = 0;
					
				$("#main_img").attr('src', map[c_pos]);
				$('#img_descr').html(descr[c_pos]);
			});
			
	
});
