jQuery.noConflict();

(function($){//BEGIN jQuery
$(function(){//BEGIN jQuery.ready()
	
	/*main, side*/
	$main = $("#mainContents");
	$side = $("#sidebar");
	
	
	
	/* 共通
	 ***********************************/
	
	
	/*gNav*/
	$("#gNavList")
		.pageInit({
			 ".siteIndex":	"> li:eq(0)"
			, ".postday":	"> li:eq(1)"
			, ".currency":	"> li:eq(2)"
			, ".picks":		"> li:eq(3)"
			, ".lesson":	"> li:eq(4)"
		}, function(){
			$(this).addClass("active");
		})
		.chimg({autoActive:true});
	
	
	
	/*toPageTop*/
	$("div.toPageTop a", $main)
		.click(function(){
			$("html,body").animate({
				scrollTop: 0
			}, 500);
			return false;
		});
	
	
	
	/*hdrDate*/
	$("#hdrDate")
		.each(function(){
			var d = new $.Date();
			$(this).text(d.mm + "月" + d.dd + "日" + "(" + d.day() + ") " + d.yy);
		});
		
	
	
	
	
	
	
	
});//END jQuery.ready()
})(jQuery);//END jQuery


function popup_img(atag){
	jQuery.popup(atag.href, '_blank', {width:500, height:500, scrollbars:1});
}
