﻿window.onload = function () {
  /* Used for Bottom Buttons*/
  $(".div_link").mouseenter(function () {
    $(this).parent().children(".div_grey").fadeOut(600);
    $(this).parent().children(".div_red").fadeIn(600);
  }).mouseleave(function () {
    $(this).parent().children(".div_red").fadeOut(600);
    $(this).parent().children(".div_grey").fadeIn(600);
  });
  $(".div_link").dropShadow({ left: 1, top: 1, blur: 1, opacity: .3, color: "#000" });
}

function loadPage(url, title) {
  $.ajax({
    type: "post",
    url: url,
    beforeSend: function () {
      $('#MContent').fadeOut('slow');
    },
    complete: function ()
    { },
    success: function (html) {
      $('#MContent').html($("#Content", $(html)).html());
      //$('#waitwheel').fadeout('fast');
      $('#MContent').fadeIn('slow');
      document.title = title;
    }
  })
}

