$(document).ready(function () {
$(".product_col").hover(
  function () {
     $(this).css( {border : "2px solid #35CA34"});
  }, 
  function () {
     $(this).css( {border : "2px solid #FFFFFF"});
  }
);
});

$(document).ready(function () {
$(".news_box").hover(
  function () {
     $(this).css( {border : "2px solid #35CA34"});
  }, 
  function () {
     $(this).css( {border : "2px solid #FFFFFF"});
  }
);
});
