//ヘッダ固定用（TOP）
$(function(){
	$("#headerWrap").css("position","fixed");
	$("h1").css("padding-top","115px");
});

$(function(){
	if($("#headerWrap").exFixed) {
		$("#headerWrap").exFixed();
	}
});

// バナー用のオンマウス（TOP）
$(function(){
    $('.newsMain dl dt img , .conRecommend ul li img').hover(
        function() {
            $(this).stop().animate({"opacity":0.7}, 1);
        },
        function() {
            $(this).stop().animate({"opacity":1}, 1);
        }
    );
});

// ツールチップ（TOP）
$(function () {
	var container = $(".conProductsInner"),	//コンテナ
		productAnchor = $("a", container),	//商品のリンク
		productName = $("p", container);	//商品名

	$(productAnchor).each(function (index) {
		$(this).hover(
			function () {
				productName[index].style.display = "block";
			},
			function () {
				productName[index].style.display = "none";
			}
		);
	});

	//最初は非表示
	$(productName).css("display", "none");
});
