/* スワップイメージ
---------------------------------------------------- */
$(function(){
    $("#shop1 .subImg a").click(function(){
        $("#shop1 img.mainImg").attr("src",$(this).attr("href"));
        return false;
    })
})

$(function(){
    $("#shop2 .subImg a").click(function(){
        $("#shop2 img.mainImg").attr("src",$(this).attr("href"));
        return false;
    })
})

$(function(){
    $("#shop3 .subImg a").click(function(){
        $("#shop3 img.mainImg").attr("src",$(this).attr("href"));
        return false;
    })
})

$(function(){
    $("#shop4 .subImg a").click(function(){
        $("#shop4 img.mainImg").attr("src",$(this).attr("href"));
        return false;
    })
})

