/*-------------------------------------------------------------
	SBAS ver1.0
	designed by common-design
	required for jquery_librarys.js
-------------------------------------------------------------*/

/*--------------------------------------------------------------------------
　　処理開始
--------------------------------------------------------------------------*/
$(document).ready(function() {

	// コンテンツを囲い影をつける処理
	$("body > div").not("div#header, div#footer").wrapAll("<div id = 'bg_container'></div>");
	$("div#header, div#menu, div#footer").addClass("bg");
	
	// セレクタの条件でそれぞれ popup や 別ウィンドウを開く処理
	$('div#contents_instructor a[href*="movie/"]').not('[href^="http"]').addClass("lightpop").attr("rel","lightpop")
	.each(function(){
			var ext_url = $(this).attr("href");
			$(this).attr("href",ext_url+"?width=380&height=320");
	});
	
	$('a[href*="popup/"][href*="freetime_"][href*=".html"]').not('[href^="http"]').attr("rel","lightpop")
	.each(function(){
			var ext_url = $(this).attr("href");
			$(this).attr("href",ext_url+"?width=590&height=500");
	});

	$('a[href*="popup/"][href*="timeschedule"][href*=".html"]').not('[href^="http"]')
	.addClass("popupwindow").attr("rel","menubar:1,width:590,height:550,center:1");

	$('a[href*="popup/"][href*="timeschedule_ikeda"][href*=".html"]').not('[href^="http"]')
	.addClass("popupwindow").attr("rel","menubar:1,width:590,height:950,center:1");

	$('a[href*="popup/"][href*="fee_"][href*=".html"]').not('[href^="http"]').attr("rel","lightpop")
	.each(function(){
			var ext_url = $(this).attr("href");
			$(this).attr("href",ext_url+"?width=590&height=500");
	});

	$('a[href*="popup/"][href*="map"][href*=".html"]').not('[href^="http"]')
	.addClass("popupwindow").attr("rel","menubar:1,width:580,height:680,center:1");

	$('a[href*="popup/"][href*=".gif"], a[href*="popup/"][href*=".jpg"]').not('[href^="http"]').attr("rel","lightpop");

	$('div#contents [rel*=lightpop]').lightpop({iconAdd:false,grouping:false});
	$("div#contents .popupwindow").popupwindow();

	// リンクが特定の条件の時、アイコンをつける処理
	$('a[href*=".pdf"]').addClass("anchor_pdf").attr("target","_blank");
	
	// 外部リンク処理
	$('a[href^="http://"]').not('[href*="suzukiballet.co.jp"]').attr("target","_blank");

/*--------------------------------------------------------------------------
　　CSS 内のイメージをプリロード
--------------------------------------------------------------------------*/
	$.preloadCssImages();
/*--------------------------------------------------------------------------
　　IE png fix
--------------------------------------------------------------------------*/
	$(document).pngFix();
});

