$(document).ready(function() {
   
    $(".graphicsImageBox").addClass("wraptocenter");
    $(".wraptocenter > div").wrap('<div class="wrapper" />');
    $(".wraptocenter > img").wrap('<div class="wrapper" />');
    $(".graphicsTable").attr('cellspacing',0);
    
    $(".contentTabbed").tabs();

    /*elementy kam je smerovan odkaz href=IDcile .contentExpand, se skryji*/
    $(".contentExpand").each(function() {
        var href = $(this).attr( "href" );
        $( this ).show();
        $( href ).hide();
        $( this ).html("více informací")  ;      
        $( this ).click(function() {
            var href = $(this).attr( "href" );
            $( href ).toggle();
            if ($( href ).css('display')=="none") title = "více informací"; else  title = "skrýt informace";
            $( this ).html(title);
            $(this).attr( "title", title);
            return false;
        });
    });     
    
    $('#lang ul').hide();
    $("#lang .active, #lang ul").live("mouseover", function(){
        $('#lang ul').show();
    });
    $("#lang .active, #lang ul").live("mouseout", function(){
        $('#lang ul').hide();
    });
    
    $(".references .reference.graphicsBox").hover(function(){
        $('* span.graphicsPlus', this).toggle();
        $('* img', this).toggle();
    });  

    if ($.browser.safari || $.browser.chrome){
        $(".imprev").each(function() {
            var width = $(this).attr( "width");
            //alert(width);
            $(this).attr( "width", parseInt(width) - 2); 
        });         
    }  

        $(".nojsspace").each(function() {
            $(this).hide();
        });   
});
