StyleRiver.Components.Seo.Init = function () {

    var items = $(".widget .item");

    //for SEO purposes: change all images to have on click redirect to url
    $.each(items, function (i, el) {

        var url = $(el).closest(".item").find("a").attr("href");

        $(el).find("img").on("click", function () {
            window.location.href = url;
        });
    });

}

;
