/* ------------------------------------------------------------ */
/* javascript : common */
/* ------------------------------------------------------------ */
$(function() {
	// edFixed
	$('#gotop').exFixed();	// for IE6

	// link to top
	$('#link_to_top').click(function () {
		$(this).blur();
		$('html,body').animate({ scrollTop: 0 }, 'slow');
		return false;
	});

});


