$(document).ready(
	function()
	{		
		/* Contact Form */
		
		//Hide div
		$( "#expandContactForm" ).css( "display", "none" );

		// Add onclick handler to checkbox
		$( "#checkShowContactForm" ).click(
			function()
			{
				// If checked
				if ($( "#checkShowContactForm" ).is( ":checked" ) )
				{
					//show the hidden div
					$("#expandContactForm").show("slow");
				}
				else
				{	   
					//otherwise, hide it 
					$("#expandContactForm").css("display","none");
				}
			}
		);
		
		/* Contact Form */

	}	
);

