$(document).ready(function() {

    $(".menu-wrap a, ul.sidebarLink a, ul.breadcrumbs li a").currentPage({defaultClass: "Current", anyPath: true, appendToFirstClass: true});
    
    // Remove images that have no source
    $("img").each(function() {
	if (!$(this).attr("src")) $(this).remove(); 
      });

    // If logged in, remove ME buttons as appropriate
    if ( $(".me_bar").length ) {
      $(".scrollable").each(function() {
	  $(".me_editButton", this).remove();
	  $(".me_newButton", this).remove();
	  $(".me_deleteButton", this).remove();
	  $(".me_upButton", this).remove();
	  $(".me_downButton", this).remove();
	});
    }
    
  });

