$(document).ready(function() {
    $(".menu-wrap a").currentPage({defaultClass: "Current"});

    // Remove images that have no source
    $("img").each(function() {
	if (!$(this).attr("src")) $(this).remove(); 
      });

  });

