// JavaScript Document

$(document).ready(function() {
 
 /* UNCOMMENT EACH LINE TO SEE HOW THE HTML IS EFFECTED */
 
 //$("#leftNav li:first").remove(); // removes the first LI
 //$("#leftNav li").remove(); // removes all the LIs from the leftNav
 //$("#leftNav li").remove(":contains('Second')"); //remove the LI containing the case sensitive term
 
 //$("#mainContent h2:first").empty(); //removes the text node child of the first H2
 $("#mainContent h2:contains('second')").empty(); //removes the text node child of the H2 containing the letters "second"
 
 
});