$(document).ready(function(){
  // Menu animations
  $('.main-menu').prepend('<div class="top-bar"></div>');
  $('.top-bar').stop().animate({width: $('.menu .current_page_item a').outerWidth(), left:$('.menu .current_page_item a').position().left}, 300);

  $('.menu a').mouseover(function() {
    $('.top-bar').stop().animate({width: $(this).outerWidth(), left:$(this).position().left}, 300)
  })

  $('.menu').mouseleave(function() {
    $('.top-bar').stop().animate({width: $('.menu .current_page_item a').outerWidth(), left:$('.menu .current_page_item a').position().left}, 300);
  });

  // Clear forms on focus
  $('form input[type=text], form textarea').each(function(){
    var value = $(this).val();

    $(this).focusout(function(){
      if ($(this).val() === '')
        $(this).val(value);
    });

    $(this).focus(function(){
      if ($(this).val() === value)
        $(this).val('');
    });
  });
});

