/* ================================================================ 
　ページスクロール
=================================================================== */

$(function(){
	$("a[href^=#]").click(function(){
		var Hash = $(this.hash);
		var HashOffset = $(Hash).offset().top;
		$("html,body").animate({
			scrollTop: HashOffset
		}, 200);
		return false;
	});
});


/* ================================================================ 
　ロールオーバー（透明度）
=================================================================== */
$(function(){
	$(".transover").hover(
	function () {
		$(this).fadeTo( 100, 0.7 ); // 速度（1秒=1000）,透明度（100%=1）
	},
	function () {
		$(this).fadeTo( 100 , 1 );
	}
	);
});


/* ================================================================ 
　トップページ
=================================================================== */

/*[ピックアップ]*/
$(function(){
	$("#pickup > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 7000, true);
});


/*[3列バナー]*/
$(function(){
	$("#three img:eq(0)").css("float","left");
	$("#three img:eq(1)").css({float:"left", marginLeft:"10px"});
	$("#three img:eq(2)").css("float","right");
	$("#three img:eq(3)").css("float","left");
	$("#three img:eq(4)").css({float:"left", marginLeft:"10px"});
	$("#three img:eq(5)").css("float","right");
});


/*[売れ筋・ブログの一番下の線消し]*/
$(function(){
	$(".top_selling:last").css("border-bottom","2px solid #FFF");
	$("#staffblog li:last").css("border","none");
	$("#namiblog li:last").css("border","none");
});

