﻿$(function() {
    $('div.product').each(function() {
        var href = $(this).find('a.productBasket').attr('href');

        $(this).click(function() {
            document.location = href;
        });
    });

    $('a.productShop').click(function(e) {
        e.stopPropagation();
    });

    if ($('#seoText').length !== 0) {
        $('#contentRight').css('padding-bottom', $('#seoText').outerHeight());
    }
});

