﻿// <![CDATA[
$(document).ready(function () {
  var winMaxHeight = $(window).height();
  $("#Home").css("min-height",winMaxHeight);
  $(".PageWrap").css("min-height",winMaxHeight);
  $("ul.SubMenu li").click(function () {
    var oToShow = $(this).attr('id').replace("Trigger", "");
    if (!($(this).hasClass("On"))) {
      $(this).parent().parent().children(".SubWrapper").hide();
      $("#" + oToShow).show();
      $(this).siblings().removeClass("On");
      $(this).addClass("On");
    }
  });
  $("ul.Sub2Menu li").click(function () {
    var oToShow = $(this).attr('id').replace("Trigger", "");
    if (!($(this).hasClass("On"))) {
      $(this).parent().siblings().children(".Sub2Wrapper").hide();
      $("#" + oToShow).show();
      $(this).siblings().removeClass("On");
      $(this).addClass("On");
    }
  });
});

function scrollTo(myId) {
  $('html, body').animate({
    scrollTop: $("#" + myId).offset().top
  }, 1000);
}

//]]>
