$(document).ready( function() { 

  // hover effects on start page
  $(".newsList").mouseover(function() {
    $(this).children(".text").children("p").children("a").css("color", "#ed7527");
  });

  $(".newsList").mouseout(function() {
    $(this).children(".text").children("p").children("a").css("color", "#000");
  });

});
