$(document).ready(function(){
	$('p#bookmark img').mouseover(function(){
		$('p#bookmark img').attr('src','/j/japan_s_history/common/btn_bookmark_on.gif'); 
	});
	$('p#bookmark img').mouseout(function(){
		$('p#bookmark img').attr('src','/j/japan_s_history/common/btn_bookmark.gif'); 
	});
});

function urlSave(){
	$('p#bookmark img').attr('src','/j/japan_s_history/common/btn_bookmark_in.gif');
	$('p#bookmark img').mouseover(function(){
		$('p#bookmark img').attr('src','/j/japan_s_history/common/btn_bookmark_in.gif'); 
	});
	$('p#bookmark img').mouseout(function(){
		$('p#bookmark img').attr('src','/j/japan_s_history/common/btn_bookmark_in.gif'); 
	});
	var url = window.location.protocol+'//'+window.location.hostname+window.location.pathname;
	filePath = url;
	$.cookie('upath',filePath,{expires:30,path:'/'});
}

function urlLoad(){
	linkUrl = $.cookie('upath');
	if(linkUrl != null){
		window.location = linkUrl;
	}
}