
/**
 * Funkce pro posouvani videa na uvodni strance
 */
$(document).ready(function() {
    init_tabs();
    init_form_errors();
    init_alphabetics_popup();
});

function init_tabs() {
    $("#category_tabs").tabs({
        cookie: { expires: 1 }
    });
    // check if there is some active comestics
    var cosmetics = $('#sidemenu li.active').size();
    if (cosmetics > 0) {    
        $('#category_tabs').tabs('select', 1);
    }
}

function init_alphabetics_popup() {
    $('#alphabetics ul.alphabetics>li').mouseenter(function() {
        $(this).find('ul').show();
    }).mouseleave(function() {
        $(this).find('ul').hide();
    });
}


function init_form_errors() {
    var form = $('div.module_bsOrder_action_order form, div.module_bsUserProfile_action_register form');
    if (form.length > 0) {
        // delete doble errors
        form.find('td').each(function(i) {
            $(this).find('ul.error_list:gt(0)').remove();
        });
        // fix errors to input
        form.find('ul.error_list').each(function(i) {
            var sibling = $(this).siblings('input[type=text], input[type=password], select, textarea');
            if (sibling.length > 0) {
                sibling.addClass('input_error');
                $(this).addClass('input_error');
                $(this).width(sibling.width() - 2);
            }
        });
    }
}
