$(function() {
   $('div#status_message a.close').click(function() {
      $(this).parent('div').fadeOut(500);
      return false;
   });
   
   if ($('#id_searchaddress_button').attr('type')=='button') {
      // at this point the SearchAddress button has turned into a type="button"
      $('#id_searchaddress_button').click(function() {
	 var f = $(this).parents('form');
	 f.attr('action', 'SearchAddress');
	 f[0].submit();
      });
   }
  
});