$(document).ready(function() {        
        /*menu*/
        $('#menu .itemBox').mouseenter(function() {
                $(this).children('ul').show();
        }).mouseleave(function() {
                $('.itemBox ul').hide();
                $('.show_nadobi1').hide();
                $('.show_nadobi2').hide();
        });    
        
        /*autoclear input*/
        var clearMePrevious = '';
        $('.clearOnClick').focus(function(){
                if($(this).val()==$(this).attr('title'))
                {
                        clearMePrevious = $(this).val();
                        $(this).val('');
                }
        });
        $('.clearOnClick').blur(function(){
                if($(this).val()=='')
                {
                        $(this).val(clearMePrevious);
                }
        });   
        
        /*category more*/
        $('.category #mainCol .item').mouseenter(function() {
                $(this).addClass('itemActive');
        }).mouseleave(function() {
                $('.category #mainCol .item').removeClass('itemActive');
        });              
        
        /*tabs*/
        $( "#contactTabs" ).tabs();        
        $('#contactTabs ul.ui-tabs-nav li a').click(function() {
                Cufon.replace($('#contactTabs ul.ui-tabs-nav li a'), {fontFamily: 'Klavika Regular', color: '#7f7e7e'});
                if($(this).parent().hasClass('ui-tabs-selected')) {
                        Cufon.replace($(this), {fontFamily: 'Klavika Regular', color: '#141413'});
                }         
        });        
        
        $('.gallery .tns a:first').addClass('active');
        /*
        $('.gallery .tns a').click(function(){
                $('.gallery .tns a').removeClass('active');
                $(this).addClass('active');
                $('.galleryBig img').attr('src', $(this).attr('href'));
                $('.galleryBig a').attr('href', $(this).attr('href'));
                return false;
        })
        */  

$('#titanove').click(function() {
  $('.show_nadobi1').show('slow', function() {

  });
 $('.show_nadobi2').hide('slow', function() {

  });
});  
$('#indukcni').click(function() {
  $('.show_nadobi2').show('slow', function() {

  });
 $('.show_nadobi1').hide('slow', function() {

  });
});      

$(".colorbox").colorbox({iframe:true, innerWidth:640, innerHeight:480});		
$(".colorboxobrazek").colorbox();
$("a[rel='galerie1']").colorbox();
        
});

