// Make form auto focus on page load
<!--
 $(document).ready(function() {
       // focus on the first text input field in the first field on the page
        $("input[type='text']:first", document.forms[0]).focus();
    });
//-->
/*
 * Jquery script to add classes to images/divs so that they can be styled with rounded corners and shadow 
 * Source: http://15daysofjquery.com/wrap-it-up-lazy-mans-html-generation-with-jquery/10/ - Thanks Jack 
 */ 

//These two are for floated content images 
$(document).ready(function(){ 
  $(".pageForm") 
  .wrap("<div class='wrap1'><div class='wrap2'>" + 
  "<div class='wrap3'><div class='wrap4'></div></div></div></div>"); 
}); 
