$(document).ready(function(){
	//*videoとstyleを切り替える------------------------------*/
	var video = $('#video');
	video.hide();
									
	$('#link-video').click(function(){
		$('#slie-contents').next().slideToggle(0,function() {
			if ($(this).is(':visible')) {
				video.html('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="603" height="441"><param name="movie" value="video.swf" /><param name="FlashVars" value="value" /><!--[if !IE]>--><object type="application/x-shockwave-flash" data="video.swf" width="603" height="441"><!--<![endif]--><param name="FlashVars" value="value" /><!--[if !IE]>--></object><!--<![endif]--></object>');
				$(this).prev().hide();
				$('#link-video').html('Back to STYLE>>');
			} else { 
				video.html('&nbsp;');
				$(this).prev().show();
				$('#link-video').html('Watch the SHOW>>');
			}
		});
	});
	
});
