function prepocitaj_produkty(){
    $('.products-line li.showing').removeClass('showing');
    $('.products-line li:last').removeClass('last');
    var maxsize = $(window).width()*0.98-45;
    var products = $('.products-line li');
    var actsize = 0;
    $.each(products, function(key, value){
        actsize += $(value).width();
        if (maxsize>actsize){
            $(value).addClass('showing');
        }
    });
    $('.products-line li:not(.showing)').hide();
    $('.products-line li.showing').show();
    $('.products-line li.showing:last').addClass('last');
}

jQuery(function($){
    prepocitaj_produkty();
    $(window).resize(function(){
        prepocitaj_produkty();
    });
});


/* Kontaktny formular */
jQuery(function($) {
    $('form#kontaktL').live('submit',function(){
        $.ajax({
            url: '?part=contact-form-submit',
            dataType: 'html',
            type: $(this).attr('method'),
            data: $(this).serialize(),
            success: function(html){
                $(".kf-ss").replaceWith(html);
            }
        });
        return false;
    });
});
