$(document).ready(function(){
  $("#header ul.nav a").removeAttr('title');
  $("#header ul.nav").supersubs({
    minWidth: 9,
    maxWidth: 18,
    extraWidth: 1
  });
  $("#header ul.nav > li").each(function() {
    $(this).css('width',$(this).width());
    $(this).children('ul').css('width',$(this).width());
    $(this).find('.sf-vertical > li > ul').css('left',$(this).width());
  });
  $("#header ul.nav").superfish({
    pathClass: 'sfPathHover',
    delay: 400,
    speed: 'fast',
    autoArrows: false,
    dropShadows: false
  });
  $(":text").labelify({ text: 'label' });
  $(":text").parent().find('label').hide();
  $("form.validate").validate({
    errorElement: "p",
    focusCleanup: true
  });
});
