// JavaScript Document
$(document).ready(function()
{
  $(".latest:odd").css("background-color", "#fbffdd");
  $(".latest:even").css("background-color", "#e1e8ff");
  
 // $("#sidebar h1").prepend('<img src="images/Newspaper-32.png" width="20" height="20" alt="Latest news" />');
 

  
 });

$(document).ready(function() {
  $('a').filter(function() {
    return this.hostname && this.hostname !== location.hostname;
  }).after(' <img src="/images/external.png" alt="external link">');
});

