$(document).ready(function(){

// Allow the correct divs to be shown and hidden by default
$("#defaultShow").attr('style', 'display: block');
$("#defaultHidden").attr('style', 'display: none');
    
// When clicking the button open the other div and close the other one
    $("#defaultShowButton input").click(function () {

        $("#defaultHidden").slideDown("slow");
		$("#defaultShow").slideUp("slow");
      
    });
	
// On submission of the form show the download link
	$("form#newsletterForm").submit(function() {
	  
        $("#confirmationText").slideDown("slow");

     
    });
 
  });
