jQuery(document).ready(function($) {
  $('.nav ul').addClass('processed').prepend('<li class="tl" /><li class="tr" /><li class="bl" /><li class="br" />');
  $('.nav > li > a').each(function() {
    var text = $(this).html();
    var first_letter = text.substr(0,1);
//    $(this).html('<span>' + first_letter + '</span>' + text.slice(1));
  });
  $('.nav li').hover(
    function() {
      $('ul', this).stop(true, true).slideDown(100, function() { $(this).width($(this).width()); $(this).height($(this).height()) });
    }, 
    function() {
      $('ul', this).stop(true, true).slideUp(100);  
    }
  );
  $('.nav').hover(
    function() {
      $('#header').css('z-index', 10);
    }, 
    function() {  
      $('#header').css('z-index', 1);
    }
  );
  $('#q').placeholder();
  if ($.browser.msie) {
    $('hr').replaceWith('<div class="hr" />');
  }
  $('.contact .more').overlay({
    fixed: false,
    top: 'center',
    left: 'center', 
    speed: 0
  });
  $('.err_val').click(function() {
    $(this).hide();
  });
})
