      $(document).ready(function() {
        $(".novinka").hover(
          function () {
              $(this).addClass('hover');
          },
          function () {
              $(this).removeClass('hover');
          }
          );       
        // odstranění řámečků u všech odkazů
        $("a").live("focus", function (event) {
          $(this).blur();
        });

        // vyplnění inputů
        $('div.kontakt input:not([type=submit])').focus(function() {
          if ((this.value == this.defaultValue)){  
             this.value = '';
          }
          if(this.value != this.defaultValue){  
            this.select();  
          }  
        });
        $('div.kontakt input').blur(function() {
            if ($.trim(this.value) == '')
            {  
              this.value = (this.defaultValue ? this.defaultValue : '');  
            }  
        });
        
    $('a[href=#top]').click(function(){
        $('html, body').animate({scrollTop:0}, 'slow');
        return false;
    });


      });


