jQuery.noConflict();

(function($){//BEGIN jQuery
$(function($){//BEGIN jQuery.ready()
	
	/*main, side*/
	var $main = $('#mainContents');
	var $side = $('#sidebar');
	
	
	
	/* 共通
	 ***********************************/
	
	
	/*gNav*/
	/*
	$('#gNavList')
		.pageInit({
			  '.products':	'> li:eq(0)'
			, '.enjoy':		'> li:eq(1)'
			, '.company':	'> li:eq(2)'
		}, function(){
			$(this).addClass('active');
		})
		.chimg({autoActive:true});
	*/
	
	
	/*toPageTop*/
	$('div.toPageTop a')
		.click(function(){
			$('html, body').animate({
				scrollTop: 0
			}, 500);
			return false;
		});
	
	
	/*IEonly: hr*/
	if($.browser.msie){
		
		
		$('hr', $main)
			.replaceWith('<div class="hr"></div>');
		
		$('ul, ol', $side)
			.each(function(){
				$(this).find('li:last')
					.addClass('last');
			});
	}
	
	
     $("img").pngfix();

	/* ページ単位
	 ***********************************/
	
	
});//END jQuery.ready()
})(jQuery);//END jQuery




