// JavaScript Document

$(document).ready(function(){
	
	//Hide div w/id onbehalf_info
   $("#onbehalf_info").css("display","none");

	// Add onclick handler to checkbox w/id onbehalf
   $("#onbehalf").click(function(){
	
	// If checked
	if ($("#onbehalf").is(":checked"))
	{
		//show the hidden div
		$("#onbehalf_info").show(0);
	}
	else
	{	   
		//otherwise, hide it 
		$("#onbehalf_info").hide(0);
	}
  });

	
	//Hide div w/id extra
   $("#div_notice").css("display","none");

	// Add onclick handler to checkbox w/id notice
   $("#notice").click(function(){
	
	// If checked
	if ($("#notice").is(":checked"))
	{
		//show the hidden div
		$("#div_notice").show(0);
	}
	else
	{	   
		//otherwise, hide it 
		$("#div_notice").hide(0);
	}
  });


/*	$("#nav_doc_306").addClass('current_main_page');
*/

});
