	function doFlash(){

		document.getElementById('dmphotos').style.display = 'none';
		document.getElementById('photos').style.display = 'block';

		$(document).ready(function(){
			$('#photos').galleryView({
				panel_width: 648,
				panel_height: 213,
				frame_width: 50,
				frame_height: 50,
				filmstrip_size: 3,
				overlay_height: 0,			// メイン画像下の帯表示
				overlay_font_size: '1em',
				transition_speed: 800,		// 400
				transition_interval: 5000,
				overlay_opacity: 0.6,
				overlay_color: '#000000',
				background_color: '#e8e3db',
				overlay_text_color: 'white',
				caption_text_color: 'white',
				border: '1px solid #d1c0a5',
				nav_theme: 'light',
				easing: 'swing',
				filmstrip_position: 'bottom',
				overlay_position: 'bottom',
				show_captions: false,
				fade_panels: true,
				pause_on_hover: false
			});
		});
	}

