jQuery('.important_info').mouseover(function(){
	 jQuery(this).css("backgroundColor","red");
});
  /*
  //leaders in performance
$(function() {
   $('#top-left').hover( function(){
      $(this).css('background-color', '#ffcc7f');
   },
   function(){
      $(this).css('background-color', '#fff');
   });
});

$(function() {
   $('#top-right').hover( function(){
      $(this).css('background-color', '#ffcc7f');
   },
   function(){
      $(this).css('background-color', '#fff');
   });
});

$(function() {
   $('#middle-left').hover( function(){
      $(this).css('background-color', '#ffcc7f');
   },
   function(){
      $(this).css('background-color', '#fff');
   });
});

$(function() {
   $('#middle-right').hover( function(){
      $(this).css('background-color', '#ffcc7f');
   },
   function(){
      $(this).css('background-color', '#fff');
   });
});

$(function() {
   $('#bottom-left').hover( function(){
      $(this).css('background-color', '#ffcc7f');
   },
   function(){
      $(this).css('background-color', '#fff');
   });
});

$(function() {
   $('#bottom-right').hover( function(){
      $(this).css('background-color', '#ffcc7f');
   },
   function(){
      $(this).css('background-color', '#fff');
   });
});
//end of leaders in performance

//leaders in football
$(function() {
   $('#lif-top-left').hover( function(){
      $(this).css('background-color', '#8dd9fa');
   },
   function(){
      $(this).css('background-color', '#fff');
   });
});

$(function() {
   $('#lif-top-right').hover( function(){
      $(this).css('background-color', '#8dd9fa');
   },
   function(){
      $(this).css('background-color', '#fff');
   });
});

$(function() {
   $('#lif-middle-left').hover( function(){
      $(this).css('background-color', '#8dd9fa');
   },
   function(){
      $(this).css('background-color', '#fff');
   });
});

$(function() {
   $('#lif-middle-right').hover( function(){
      $(this).css('background-color', '#8dd9fa');
   },
   function(){
      $(this).css('background-color', '#fff');
   });
});

$(function() {
   $('#lif-bottom-left').hover( function(){
      $(this).css('background-color', '#8dd9fa');
   },
   function(){
      $(this).css('background-color', '#fff');
   });
});

$(function() {
   $('#lif-bottom-right').hover( function(){
      $(this).css('background-color', '#8dd9fa');
   },
   function(){
      $(this).css('background-color', '#fff');
   });
});

//end of leaders in football

//leaders in sponsorship

$(function() {
   $('#lis-top-left').hover( function(){
      $(this).css('background-color', '#85d0cc');
   },
   function(){
      $(this).css('background-color', '#fff');
   });
});

$(function() {
   $('#lis-top-right').hover( function(){
      $(this).css('background-color', '#85d0cc');
   },
   function(){
      $(this).css('background-color', '#fff');
   });
});

$(function() {
   $('#lis-middle-left').hover( function(){
      $(this).css('background-color', '#85d0cc');
   },
   function(){
      $(this).css('background-color', '#fff');
   });
});

$(function() {
   $('#lis-middle-right').hover( function(){
      $(this).css('background-color', '#85d0cc');
   },
   function(){
      $(this).css('background-color', '#fff');
   });
});

$(function() {
   $('#lis-bottom-left').hover( function(){
      $(this).css('background-color', '#85d0cc');
   },
   function(){
      $(this).css('background-color', '#fff');
   });
});

$(function() {
   $('#lis-bottom-right').hover( function(){
      $(this).css('background-color', '#85d0cc');
   },
   function(){
      $(this).css('background-color', '#fff');
   });
});
  */

//end of leaders in sponsorship

