jQuery.noConflict();

(function($){//BEGIN jQuery
$(function(){//BEGIN jQuery.ready()
	
	/*main, side*/
	var $main = $('#mainContents');
	var $side = $('#sidebar');
	
	
	
	/* 共通
	 ***********************************/
	
	
	/*gNav*/
	$('#gNavList')
		.pageInit({
			  '.siteIndex':	'> li:eq(0)'
			, '.intro':		'> li:eq(1)'
			, '.treat':		'> li:eq(2)'
			, '.traffic':	'> li:eq(3)'
			, '.happy':		'> 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;
		});
	
	
	if($.browser.msie){
		$('hr', $main)
			.replaceWith('<div class="hr"></div>');
	}
	
	
	/*FFonly: anchor_link*/
	if($.browser.mozilla){
		var loc_hash = location.hash;
		if(loc_hash && $(loc_hash)){
			setTimeout(function(){
				$('html, body').animate({
					scrollTop: $(loc_hash).offset().top
				}, 0);
			}, 650);
		}
	}
	
	
	
	
	
	/* ページ単位
	 ***********************************/
	
	
	
	
});//END jQuery.ready()
})(jQuery);//END jQuery



