﻿$(window).load(function () {
  $('.navitem').mouseover(function () { $(this).children('.subnav').removeClass('Off').addClass('On'); });
  $('.navitem').mouseout(function () { $(this).children('.subnav').removeClass('On').addClass('Off'); });

  $('.subnavlink').mouseover(function () { $(this).children('.subsubnav').removeClass('Off').addClass('On'); });
  $('.subnavlink').mouseout(function () { $(this).children('.subsubnav').removeClass('On').addClass('Off'); });

  var t = 0, l = 0;
  $('#ImgGrid').children('.GridImage').each(function () {
    var el = $(this);
    el.css({ top: t + "px", left: l + "px", visibility: "visible" });
    var hei = el.height();
    t += hei + 14;
    if (t > 122) {
      t = 0;
      l += el.width() + 14;
    }
  });
});

function CheckGoTo(service) { window.location = 'Services.aspx?#' + service; }
