// JavaScript Document

		$(document).ready(function()
		{
		  //hide the drawer on page load 
		  //NOTE: CBARNETTE 2010.05.20 -- Already hidden in CSS
		  //$("#drawer_contents").hide();
		});
		
		function OpenDrawer() {
		  //open the FAQ Drawer on some event
		  if ($("#drawer_contents").is(":hidden")){
			$("#drawer_contents").slideDown("slow");
		  }
		}
		function CloseDrawer() {
		  //close the FAQ Drawer on some event
		  if ($("#drawer_contents").is(":visible")){
			$("#drawer_contents").slideUp("slow");
		  }
		}
		function ToggleDrawer() {
		  //open or close the FAQ Drawer based on state
		  if ($("#drawer_contents").is(":animated")){
			  return false;
		  } else {
			  if ($("#drawer_contents").is(":hidden")){
				$("#drawer_contents").slideDown("slow");
			  } else if ($("#drawer_contents").is(":visible")){
				$("#drawer_contents").slideUp("slow");
			  }
		  }
		}
		function menu_effect(pointer_location) {
			//set the menu pointer position based on instructions from the <body> onload event
			if (pointer_location > 0) {
				var menu_item_link = 'a#nav_menu_item_link_' + pointer_location;
				$(menu_item_link).addClass('selected');
			}
		}
