
// for site specific functions. either grab js from code-library.js or write your own.

/* dhtml menus using jquery */

  $(document).ready(function(){

		$('ul#navLevelOne li').hover(
		     function () {
		       	$(this).children("ul").show();
		     }, 
		     function () {
		     	$(this).children("ul").hide();
		     }
		);


});
