var tabCookie = new Array();
var nameCookie;
var valueCookie;
var menu;
var tab = new Array();

function slick() {
    tabCookie = document.cookie.split('; ');
    for ( i = 0 ; i < tabCookie.length ; i++) {
        nameCookie = tabCookie[i].split('=')[0];
        valueCookie = tabCookie[i].split('=')[1];
        if ( valueCookie == '1') {
            tab[nameCookie] = true;
            $('#' + nameCookie).slideDown(0);
        }
    }
}

$(document).ready(function(){
    if ( document.cookie != '' ) slick();
    else {
        document.cookie = 'zakladyMenu2=1;path=/';
        $('#zakladyMenu2').slideDown('slow');
    }
    $('div.menu img').mouseover(function(){
        $(this).attr('src', 'img/' + $(this).attr('alt') + '2.jpg');
    });
    $('div.menu img').mouseout(function(){
        $(this).attr('src', 'img/' + $(this).attr('alt') + '.jpg');
    });
    $('#bukmacherzyMenu, #pokerMenu, #kasynoMenu, #platnosciMenu').click(function(){
        if ( $('#' + $(this).attr('id') + '2').is(':hidden') ) {
            tab[$(this).attr('id') + '2'] = true;
            document.cookie = $(this).attr('id') + '2=1;path=/';
            $('#' + $(this).attr('id') + '2').slideDown('slow');
        }
        else {
            tab[$(this).attr('id') + '2'] = false;
            document.cookie = $(this).attr('id') + '2=0;path=/';
            $('#' + $(this).attr('id') + '2').slideUp('slow');
        }
    });
    $('#kontaktDiv input, #kontaktDiv textarea').keyup(function(){
        if ( $('#formName').val() != '' && $('#formMail').val() != '' && $('#formText').val() != '' ) $('#formSubmit').attr('disabled', false);
        else $('#formSubmit').attr('disabled', true);
    });
});
