﻿
/*Adding CssClass on Subpagelist in MSB*/
$jQuery(document).ready(function () {
  $jQuery("#StandardBodyBlockNoRightSpot .GenericList li:odd").addClass("Odd");

  if ($jQuery(".SecondRow .Spot").length == 0) {
    $jQuery(".SecondRow").css("display", "none");
  }

  if ($jQuery(".ThirdRow .Spot").length == 0) {
    $jQuery(".ThirdRow").css("display", "none");
  }

});
