function Show_Image(image_num) {
	var this_image = '#image' + image_num;
	$('#gallery_image > div').not('#image' + image_num).hide();
	$(this_image).fadeIn('slow');

}