/* ============================================================

	script info : 独自のスクリプトを記述

============================================================ */


/* ------------------------------------------------------------
	common : footer column heights
------------------------------------------------------------ */

$(document).ready(function() {
	$('#footer div.summary, #footer div.sitemap ul').autoHeight();

	$('#main div.columnsBlock div.column div.inner').autoHeight();

	$('#results div.clientsList div.client').autoHeight();
	$('#results div.clientDetail div.stepBlock div.step').autoHeight();
});


/* ------------------------------------------------------------
	common : smooth scroll
------------------------------------------------------------ */

$(document).ready(function() {
	$('a[href^=#]').click(function() {
		if ($(this).hasClass('nosc') == false) {
			var speed = 500;
			var href= $(this).attr('href');
			var target = $(href == '#' || href == '' ? 'html' : href);
			var position = target.offset().top;
			$($.browser.safari ? 'body' : 'html').animate({ scrollTop : position }, speed, 'easeInOutCirc');
			return false;
		}
	});
});



