jQuery(function($) {
  // Wire up donate button
  $('.DonateBtn').colorbox({width:"460", height:"740px", iframe:true});

  // Make into picture gallery
	$("a[rel='gallery']").colorbox();

  // Make Search field work
  $("input.SearchField").focus(function(){
    if($(this).val() == "Search") {
      $(this).val("");
    }
  }).blur(function(){
    if($(this).val() == "") {
      $(this).val("Search");
    }
  });
  
  // Clean up footer
  $('.LinksBar').append( $('#login').html() );
  $('#login').html('');

  // Make flash notices disappear after 4 seconds
  setTimeout("make_flash_messages_disappear()",4000);
});

function make_flash_messages_disappear() {
  jQuery('#notice_message, #error_message').filter(':not(:hidden)').fadeOut();;
}


