(function($,$Js){
	
	//定数
	var	LEFT_PANEL_ID="#left_panel img",//サムネイルのID
			FOCUSED_ID="#focused_inner div",//大きな画像のID
			FOCUSED_BORDER_CSS="",//ステイのボーダー
			DEFAULT_BORDER_CSS="",//デフォルトのボーダー
			IE6=(navigator.userAgent.indexOf("MSIE 6")>-1)?true:false;
	
	//初期設定
	$Js.util.asPlugin(jQuery);//jqueryのプラグインとして動作
	$Js.util.settings.def({//パスの設定
		packagePath : "/_common/js/class/",//classファイルのパス設定
		useStrict : true
	});
	
	//クラスのインポート
	$.Package.from("fadeShow").Import("fadeShow");
	$.Package.from("core.util").Import("Timer");
	
	//インスタンス生成
	$.fadeShow=$.classes.fadeShow();
	$.timer=$.classes.Timer();
	
	$(function(){
		if(IE6===true){
			DD_belatedPNG.fix('.new_icon');
		}
		$.fadeShow.registTarget(LEFT_PANEL_ID,FOCUSED_ID);
		$.fadeShow.registTimer($.timer);
		$.fadeShow.registAction(DEFAULT_BORDER_CSS,FOCUSED_BORDER_CSS);
		$.fadeShow.registFade(500,3000);
	});
	
	
	
})(jQuery,frameWork)
