function page_redirect(message,link){
    alert(message);
    window.location.href=link;
}

//jQuery//////////////////////////////////////////////////////////////////////////
$(document).ready(function(){
/*
    var page = window.location; //url stranky
    var page_hash = escape(page); //url stranky hashovane
    if ($.cookie(page_hash)>0){ //odroluje stranku na pozici, ktera je ulozena v cookie
        $(window).scrollTop ( $.cookie(page_hash) );
    }

    $(window).unload( function(){  //pri opousteni stranky ulozi aktualni pozici do cookie
        var scrollTop = $(window).scrollTop(); //aktualni pozice scroll od vrsku okna
        var page = window.location; //url stranky
        var page_hash = escape(page); //url stranky hashovane
        var date_expir = new Date();
        date_expir.setTime(date_expir.getTime() + (30*60*1000));//expirace cookie za 30 minut
        $.cookie(page_hash, scrollTop, {
            expires: date_expir
        });
    });
*/  
    $('#ok').click();//automaticky zmackne tlacitko s id="ok"
    
    $(".tablerow:even").children().addClass('tablerow_second');//obarvi kazdy druhy radek tabulky

    $('.tablerow').hover(function(){//vysviti radek tabulky po najeti mysi
        $(this).children().addClass('tablerow_highlight');
    },function(){
        $(this).children().removeClass('tablerow_highlight');
    });

    //lightbox
    $(function() {
        $('.lightbox').lightBox();
    });

    //menu
    $("ul.sf-menu").superfish({
            hoverClass:    'sfHover',          // the class applied to hovered list items
            //pathClass:     'overideThisToUse', // the class you have applied to list items that lead to the current page
            //pathLevels:    1,                  // the number of levels of submenus that remain open or are restored using pathClass
            delay:         500,                // the delay in milliseconds that the mouse can remain outside a submenu without it closing
            //animation:     {opacity:'show'},   // an object equivalent to first parameter of jQuery’s .animate() method
            speed:         'fast',             // speed of the animation. Equivalent to second parameter of jQuery’s .animate() method
            autoArrows:    true,               // if true, arrow mark-up generated automatically = cleaner source code at expense of initialisation performance
            dropShadows:   false,               // completely disable drop shadows by setting this to false
            disableHI:     false              // set to true to disable hoverIntent detection
            //onInit:        function(){},       // callback function fires once Superfish is initialised – 'this' is the containing ul
            //onBeforeShow:  function(){},       // callback function fires just before reveal animation begins – 'this' is the ul about to open
            //onShow:        function(){},       // callback function fires once reveal animation completed – 'this' is the opened ul
            //onHide:        function(){}        // callback function fires after a sub-menu has closed – 'this' is the ul that just closed
    });



    //tabs produkt
    $(".tab_content").hide(); //Hide all content
    $("ul.tabs li:first").addClass("active").show(); //Activate first tab
    $(".tab_content:first").show(); //Show first tab content

    $(".tabs li a").click(function() {
        // $('#catalogue_edit_form').submit();
        });

    //On Click Event
    $("ul.tabs li").click(function() {

        $("ul.tabs li").removeClass("active"); //Remove any "active" class
        $(this).addClass("active"); //Add "active" class to selected tab
        $(".tab_content").hide(); //Hide all tab content

        var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
        $(activeTab).fadeIn(); //Fade in the active ID content
        return false;
    });
    
    //ckeditor
    $('textarea.ckeditor_smiley').ckeditor( function() { /* callback code */ }, {
        toolbar : 'Smiley'
    });    
        
});

