$(document).ready(function() {

    // search form
    $("form#search input").focus(function() {
        $(this).addClass("focus"); // because IE doesn't like :focus
        if ($(this).closest("form").children("input[type=submit]").length == 0) {
	        if ($(this).val() == 'Search') {
	          $(this).val("");
	        }
	        $(this).after('<input type="submit" value="go" />');
				}
    });

    $("form#search input").blur(function() {
			if ($(this).val() == "") {
        $(this).removeClass("focus"); // because IE doesn't like :focus
				$(this).val("Search");
				$(this).closest("form").children("input[type=submit]").remove();
			}
    });
    
    
    // tool tip
    $("%ul#nav a").tooltip({
      track: true,
      showURL: false,
      bodyHandler: function() {
        return $($(this).closest('li').children("div.tooltip")).html();
      }
    });
});
