/* * JavaScript Document* wjec.co.uk* jquery.optinform.js* * /js/jquery.optinform.js* * Author    :   Greg Merriman* Copyright :   Copyright 2010 (c) Imaginet Ltd.* Created   :   Fri 07 May 2010* Modified  :   Fri 07 May 2010* */ // When the DOM is ready...$(function(){		//email_optin    $('input#email_optin').click(function () {    if ($(this).attr("checked")) {        //do the stuff that you would do when 'checked'        $('table#formfill').show();    }    else {        $('table#formfill').hide();    }});	});