// JavaScript Document
google.load("jquery", "1.4.2");

google.setOnLoadCallback(function() {
    // Place init code here instead of $(document).ready()
	
// eNews Sign up Form
$('#enews .additionalInformation').prev().append("<span class='moreLink'>click to expand</span>");
$('#enews .additionalInformation').hide(); 
$('#enews .additionalInformation').prev().click(function () {
      $(this).next().slideToggle();
    });

});