(function($) {
    $(document).ready(function(){
        $(".item-large, .item-small, .item-small-inactive, .item, .subnavi-item").each(function() {
            var box = this;
            if ($("a", this).length > 0) {
                var link = $("a", this)[0];
                $(box).click(function() {
                    window.location = $(link).attr("href");
                });
            }
        });
    });

})(jQuery);

