
/* gallerySwfAttach : swfオブジェクト配置 {id:ID（bodyのID=ファイル名=写真など保存先フォルダ）} */
function gallerySwfAttach(id){
	var filepath = '../../shared/swf/gallery.swf?P_ID=' + id;
	var so = new SWFObject(filepath, "index", "780", "565", "8");
	so.addParam("quality", "high");
	so.addParam("wmode", "transparent");
	so.write("swf");
}

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