/**
 * Provide onclick functionality for the TV help buttons
 *
 * @package agdistis
 * @version $Id: tv_help.js,v 1.2 2008/07/24 16:06:57 tpeters Exp $
 */
$(document).ready(
	function()
	{
		$("#tv_ordering_instructions").click(
			function()
			{
				hide_disruptive_overlay_elements();
				$("#tv_popup_container").show();
			}
		);
		$("#tv_popup_close").click(
			function()
			{
				$("#tv_popup_container").hide();	
				show_disruptive_overlay_elements();
			}
		);
	}
);
