﻿$(document).ready(function() {
    $("#keywords").focus(
        function() {
            if (this.value == this.defaultValue) {
                this.value = "";
            }
        }).blur(
        function() {
            if (!this.value.length) {
                this.value = this.defaultValue;
            }
        });

    $("#navigation ul#nav li").hover(
      function() {
          $(this).children('a').addClass('current');
          $(this).children('ul').show();
      },
      function() {
          $(this).children('a').removeClass('current');
          $(this).children('ul').hide();
      }
    );
});