$(document).ready(function() {
// create the toggle link
$("#advanced_options").before("<p><a href='#' id='toggle_options'>Show advanced options</a>");
// hide the advanced options as soon as the DOM is ready
$('#advanced_options').hide();
// capture clicks on the created link
$('a#toggle_options').click(function() {
// change the link text
if ($('a#toggle_options').text()=='Show advanced options') {$('a#toggle_options').text('Hide advanced options');}
else {$('a#toggle_options').text('Show advanced options');}
// toggle the options span
$('#advanced_options').toggle('slow');
return false;
  });
	
$('#analysis_form button').click(function() {
$("h1").before("<p style='padding-left:20px;color:#237E63;background: #fff url('/_assets/includes/img/loading.gif') left no-repeat;'>Analysis in progress - please be patient while results are processed</p>");
  });
});