// Drop-down Menu for EJP

$(document).ready(function(){
   $("#nav > li > ul").fadeOut("fast");
   $("#nav li").hover(
      function(){ $(this).find("ul:first").fadeIn("fast"); }, 
      function(){ $(this).find("ul:first").fadeOut("fast"); } 
   );
   if (document.all) {
      $("#nav li").hoverClass ("sfHover");
   }
});
$.fn.hoverClass = function(c) {
   return this.each(function(){
      $(this).hover( 
         function() { $(this).addClass(c);  },
         function() { $(this).removeClass(c); }
      );
   });
};

/**
 * Bookmark current page
 */
$.bookmark = function () { 
	if (document.all) { 
		window.external.AddFavorite(location.href, document.title);
	} else { 
		alert("Sorry! Your browser does not support this function.  Please use your browser's built in Bookmarks option.");
	}
}