/*
JavaScript functionality for the Hillsong London Colour Conference 2009
implemented using jQuery. http://jquery.com/
*/

jQuery(document).ready(function(){
 
  //Function to clear the form elements
  jQuery("a#clear").click(function(){
    jQuery("input.text").each(function(i){
        jQuery(this).val("");
        })
  });

});