﻿
//Function for adding background color on ImageTextLinkSpot in Trivsel Frontpage
$jQuery(document).ready(function () {
  $jQuery(".FourthRow .ImageTextLinkSpot ").mouseover(function (e) {
    $jQuery(this).addClass("HighlightSpot")
  });
  $jQuery(".FourthRow .ImageTextLinkSpot ").mouseout(function (e) {
    $jQuery(this).removeClass("HighlightSpot")
  });
});
