$(document).ready(function(){
	
	//btn hover
	$('.searchbtn,#gnavi img,.topleftMenu img,.leftMenu img').not('.current, .current img').hover(function(){
		$(this).attr('src', $(this).attr('src').replace('.gif', '_on.gif'));
	}, function(){
		$(this).attr('src', $(this).attr('src').replace('_on.gif', '.gif'));
	});

	//pgTop
	$('.pgTop').click(function(){
		$('html,body').animate({
			scrollTop: 0
		}, 'normal', 'swing');
		return false;
	});


});





