// JavaScript Document
$(function()
{
	// ページトップへ戻る
	$('.toppage a').click(function(){
		$(this).blur();
		$('html,body').animate({ scrollTop: 0 }, 'normal');
		return false;
	});
	
	$('#KeywordWriter').focus(function(){
		$(this).val("");
		$(this).css({color:"#444444"});
	});

});


/**
 * 非同期で画像の読み込み
 *
 */
function load_image(id, img_src, title)
{
	$("#"+id).html('<img src="'+img_src+'" alt="'+title+'" title="'+title+'" />');
}

