
/* gallerySwfAttach : swfオブジェクト配置 {id:ID（bodyのID=ファイル名=写真など保存先フォルダ）} */
function galleryIndexSwfAttach(id){
	var filepath = '../../shared/swf/index.swf?P_ID=' + id;
	var so = new SWFObject(filepath, "index", "780", "2800", "8");
	so.addParam("quality", "high");
	so.addParam("wmode", "transparent");
	so.write("swf");
}
/* resizeSwf : 高さ再設定 */
function resizeSwf(height){
	$('#swf').each(function(){
		$(this).css('height',height)
		$(this).css('overflow','hidden')
	});
}

/* #swfがあったらbodyのidを取得しdesginGallerySwfを配置*/
$(function(){
	$('#swf').each(function(){
		galleryIndexSwfAttach($('body').attr('id'));
	});
});