$(document).ready(function(){

	$('#gnavi img, #leftMenu img').not('.current').hover(function(){
		$(this).attr('src', $(this).attr('src').replace('_off.gif', '_on.gif'));
	}, function(){
		$(this).attr('src', $(this).attr('src').replace('_on.gif', '_off.gif'));
	});
	
	$('.hover').hover(function(){
		$(this).attr('src', $(this).attr('src').replace('_off.gif','_on.gif'));
	},function(){
		$(this).attr('src', $(this).attr('src').replace('_on.gif','_off.gif'));
	});

	//pgTop
	$('.pgTop span').click(function(){
		$('html,body').animate({
			scrollTop: 0
		}, 'normal', 'swing');
		return false;
	});

});
