$(document).ready(function() {
  $('ul.navi > li').hover(function() {
    $(this).addClass('hover').find('> ul').show();
  }, function() {
    $(this).removeClass('hover').find('> ul').hide();
  });
  
  
  $('#search input[name="search"]').focus(function(){
    if(this.value == 'Hae sivustolta')
      this.value = '';
    
  });
    
  $('#search input[name="search"]').blur(function(){
    if(this.value == '')
      this.value = 'Hae sivustolta';
  
  });
  
  $('#front-splasher').innerfade({
     speed: 1000,
     timeout: 5000,
     type: 'sequence',
    containerHeight: 210
   });

});




