$(document).ready(function() {

    //  editing-form

    $('.editing-form input').click(function() {
        $(this).select();
    });

    // upgrade

    $('.upgrade a').hover(function() {
        $(this).next('.premium-pros:hidden').fadeIn();
    },function() {
        $(this).next('.premium-pros:visible').hide();
    });

    // register redirect

    $('a.redirect-to-shop').click(function(e) {
        e.preventDefault();
        var iShopId = $(this).attr('shop_id');
        var sUrl = $(this).attr('href');
        $.ajax({
            type: "post",
            url: '/przekierowanie',
            data: {
                shop_id: iShopId
            },
            success: function(response) {
                window.location = sUrl;
            }
        });
    });

    $('#add-new-category').click(function(e) {
        e.preventDefault();

        if ($('#category_2').hasClass('hidden-field')) {
            $('#category_2').removeClass('hidden-field');
        }
        else if ($('#category_3').hasClass('hidden-field')) {
            $('#category_3').removeClass('hidden-field');
            $(this).hide();
        }

    });

    $('#close-welcome-box').click(function(e) {
        e.preventDefault();
        $('#welcome-box').hide();
    })

});
