/// <summary>The ToolsMenu class adds the javascript logic for the bookmark menu.
$(document).ready(function() {
    //Toggle the over / out state of the top level flyout items. 
    $("ul.menu.tools > li:first").hover(
		function () {
			$(this).children("ul").show();
		}, 
		function () {
			$(this).children("ul").hide();
		}
    );
    
    //Load our print dialog on demand.
    $("a#toolsMenuPrint").click(
		function() {
			window.print();
			return false;
		}
    );
}); 
