$(document).ready(function(){

    $('.zavrit').click(function(){
        $('.info').hide();
        return false;
    });

    /*$('#btnObjednavkaPaliva').click(function(){
        if( $('.infoContent').is(':visible') ) {
            $('.infoContent').hide();
            $('.infoContent2').show();
        }
        return false;
    });*/

    $('.info').mouseleave(function(){
        if( $('.infoContent2').is(':visible') ) {
            $('.infoContent2').hide();
            $('.infoContent').show();
        }
    });

    /*$('#btnObjednavkaKamenivo').click(function(){
        if( $('.infoContent').is(':visible') ) {
            $('.infoContent').hide();
            $('.infoContent2').show();
        }
        return false;
    });*/

    $("a[rel^='imageGallery']").prettyPhoto({
        theme: 'facebook',
        show_title: false,
        social_tools: ''
    });

    $("a[rel^='inline']").prettyPhoto({
        theme: 'dark_square',
        show_title: false,
        social_tools: ''
    });

    function closeBox() {
        $.prettyPhoto.close();
    }

    $('.i1').hover(function(){
        $('.info1').show();
    }, function(){
        $('.info1').hide();
    });

    $('.i2').hover(function(){
        $('.info2').show();
    }, function(){
        $('.info2').hide();
    });

    $('.i3').hover(function(){
        $('.info3').show();
    }, function(){
        $('.info3').hide();
    });

    $('.i4').hover(function(){
        $('.info4').show();
    }, function(){
        $('.info4').hide();
    });

    $('.i5').hover(function(){
        $('.info5').show();
    }, function(){
        $('.info5').hide();
    });

    $('.i6').hover(function(){
        $('.info6').show();
    }, function(){
        $('.info6').hide();
    });


});

function bookmark()
{
    title = document.title;
    url = document.URL;

    if (window.sidebar) { // Mozilla Firefox Bookmark
        window.sidebar.addPanel(title,url,"");
    } else if (window.external) { // IE Favorite
        window.external.AddFavorite(url,title);
    } else if(window.opera && window.print) { // Opera Hotlist
        return true;
    }

    return false;
}

$(window).load(function(){

    $('.slider-obrazky').nivoSlider({
        effect: 'fade',
        manualAdvance: false,
        directionNav: true,
        controlNav: false,
        pauseTime: 6000,
        animSpeed: 1000
    });
});
//ovladani menu
$(document).ready(function(){


    $(".tlacitka").find("ul>li>ul").hide();

    $(".tlacitka>ul>li").hover(function() {

        $(this).find("ul").show();
    } , function() {
        $(this).find("ul").hide();
    });

});



