// applies yellow background color to a single <li>
jQuery("div.entry-contents li:eq(0)").css( "backgroundColor", "#0000FF" );
jQuery("div.entry-contents li:eq(1)").css( "backgroundColor", "#0000FF" );
jQuery("div.entry-contents li:eq(2)").css( "backgroundColor", "#0000FF" );
jQuery("div.entry-contents li:eq(3)").css( "backgroundColor", "#0000FF" );

// applies italics to text of the second <li> within each <ul class="nav">
jQuery("div.entry-contents ul").each(function(index) {
  $(this).find("li:eq(0)").css( "width", "50px" );
  $(this).find("li:eq(1)").css( "width", "260px" );
  $(this).find("li:eq(2)").css( "width", "70px" );
  $(this).find("li:eq(3)").css( "width", "50px" );
});


jQuery("div.entry-contents td:eq(0)").css( {"backgroundColor" : "#0000FF",  "color": "#fff"} );
jQuery("div.entry-contents td:eq(1)").css( {"backgroundColor" : "#0000FF",  "color": "#fff"} );
jQuery("div.entry-contents td:eq(2)").css( {"backgroundColor" : "#0000FF",  "color": "#fff"} );
jQuery("div.entry-contents td:eq(3)").css( {"backgroundColor" : "#0000FF",  "color": "#fff"} );
jQuery("div.entry-contents td:eq(4)").css( {"backgroundColor" : "#0000FF",  "color": "#fff"} );

// applies italics to text of the second <li> within each <ul class="nav">
jQuery("div.entry-contents ul").each(function(index) {
  $(this).find("td:eq(0)").css( "width", "50px" );
  $(this).find("td:eq(1)").css( "width", "260px" );
  $(this).find("td:eq(2)").css( "width", "70px" );
  $(this).find("td:eq(3)").css( "width", "50px" );
  $(this).find("td:eq(4)").css( "width", "50px" );
});

// applies red text color to descendants of <ul class="nav">
// for each <li> that is the second child of its parent
//jQuery("ul.ship li:nth-child(2)").css( "color", "red" );
//document.write('<div id="promo"><a title="Segundo Passageiro Grátis - MSC Cruzeiros" href="http://www.reservasdecruzeiros.tur.br/promocao-2-passageiro-gratis-msc/"><img title="Passageiro Gratis" src="http://www.reservasdecruzeiros.tur.br/ajoomla/wp-content/uploads/2011/10/2-passageiro.png" alt="MSC Cruzeiros" width="173" height="338" /></a></div>');
