function showaboutimage(image_id) {
	about_image = jQuery('#about-image_'+image_id);
	//about_button = jQuery('#about-button_'+image_id);
	jQuery('.about-image').hide();
	about_image.show();
}
			
function makegallery() {
	jQuery('.about-button:last').addClass('about-button-last');
	
	jQuery('.about-button').each(function(){
		about_buttons = jQuery('#about-buttons');
		//jQuery(this).detatch();
		about_buttons.append(jQuery(this));
	});
}