﻿// JavaScript Document

/*--------------------------------------------------------------------------*
 *  common script
 *--------------------------------------------------------------------------*/
try {
document.execCommand('BackgroundImageCache', false, true); 
}catch(e) {}

var multiBG ={
	init:function(){
		$('#contentsArea #columnA .indexSectBoxs').add_layer("url('common/images/corner1.gif') no-repeat 0 top");
		$('#contentsArea #columnA .indexSectBoxs').add_layer("url('common/images/corner2.gif') no-repeat right top");
		$('#contentsArea #columnA .indexSectBoxs').add_layer("url('common/images/corner3.gif') no-repeat right bottom");
		$('#contentsArea #columnA .indexSectBoxs').add_layer("url('common/images/corner4.gif') no-repeat 0 bottom",{insideCss:{'padding':'10px'}});

		$('#resultAreaBody .resultBody .resultSectBoxs').add_layer("url('../common/images/corner3.gif') no-repeat right bottom");
		$('#resultAreaBody .resultBody .resultSectBoxs').add_layer("url('../common/images/corner4.gif') no-repeat 0 bottom",{insideCss:{'padding':'15px'}});

		$('#detailAreaBody .photoArea li').add_layer("url('../common/images/corner3.gif') no-repeat right bottom");
		$('#detailAreaBody .photoArea li').add_layer("url('../common/images/corner4.gif') no-repeat 0 bottom",{insideCss:{'padding':'18px'}});

		$('#contentsArea #detailAreaBody .textArea').add_layer("url('../common/images/corner3.gif') no-repeat right bottom");
		$('#contentsArea #detailAreaBody .textArea').add_layer("url('../common/images/corner4.gif') no-repeat 0 bottom",{insideCss:{'padding':'18px'}});

		$('#specialClass,#museumClass').add_layer("url('../common/images/corner3.gif') no-repeat right bottom");
		$('#specialClass,#museumClass').add_layer("url('../common/images/corner4.gif') no-repeat 0 bottom");

		$('#contentsArea #worksArea .photoArea li').add_layer("url('../common/images/corner3.gif') no-repeat right bottom");
		$('#contentsArea #worksArea .photoArea li').add_layer("url('../common/images/corner4.gif') no-repeat 0 bottom",{insideCss:{'padding':'10px'}});




		$("#contentsArea #contentAreaBody").append('<div style="background: url(../common/images/corner5.gif) no-repeat 0px bottom;height:40px;"></div>');
		$("#contentsArea #searchAreaBody").append('<div style="background: url(../common/images/corner5.gif) no-repeat 0px bottom;height:15px;"></div>');
	}
}

//SWF embed
var embedSWF ={
	init:function(){
			var flashvars = {};
			var params = {};
			params.loop = "false";
			params.wmode = "transparent";
			var attributes = {};
			swfobject.embedSWF("flash/top.swf", "swfArea", "753", "305", "9.0.0", false, flashvars, params, attributes);
			$("#swfArea p").show();
	}
}

//画面ロード時に実行
$(function(){
	smoothScroll.init(500);
	embedSWF.init();
	multiBG.init();
});


