$(function(){
	$('a').each(function(){
		var href = $(this).attr('href');
		if (href.charAt(0) == '/') {
			if (href.indexOf('http://www.kurasukoto.com') == -1) {
				href = 'http://www.kurasukoto.com'+href;
				$(this).attr('href',href);
			}
		}
	});
});
