$(document).ready(function(){

var colors = Array("#ED008C", "#000", "#00AEF0", "#4D0087"), idx;
$(".title-box").hover(function(){
  idx = Math.floor(Math.random() * colors.length); // Pick random index
  $(this).css("background-color", colors[idx]);
}, function() {
  $(this).css("background-color","none");
});



						   });


$(document).ready(function(){

var colors = Array("#ED008C", "#000", "#00AEF0", "#4D0087"), idx;
$(".news-boxZ").hover(function(){
  idx = Math.floor(Math.random() * colors.length); // Pick random index
  $(this).css("background-color", colors[idx]);
}, function() {
  $(this).css("background-color","none");
});



						   });

// var colors = Array("#fb2900", "#ff7800", "#fff43b", "#8dfa30", "#01c86a", "#00d7b2", "#0092e3", "#002f7e", "#390e73"), idx;

