/*
062_Amuse-W2C V4.1[CF0207] 2010/06/21 T.Suzuki        IE6で商品バリエーション選択時にJavascriptエラーが出る件
*/

$(function() {
	$('a[href*=#]').click(function() {
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
			var target = $(this.hash);
			// IE6でエラーが出るのでtry-catchで括る対応
            try {
			    target = target.length && target;
			    if (target.length) {
				    var sclpos = 30;
				    var scldurat = 1200;
				    var targetOffset = target.offset().top - sclpos;
				    $('html,body')
					    .animate({scrollTop: targetOffset}, {duration: scldurat, easing: "easeOutExpo"});
				    return false;
			    }
			}
			catch (e){ }
		}
	});
});

