﻿$(document).ready(function() {
   $("#imgMenu").click(function() {
      document.getElementById("divOutline").style.left = $('#imgMenu').offset().left;
      document.getElementById("divOutline").style.top = $('#imgMenu').offset().top  - 18;
      $('#divOutline').fadeIn('slow');
      document.getElementById("divOutline").style.height = $(window).height() - 200;
   });
   $("#imgClose").click(function() {
      closeOutline();
   });
   $("li.highlightPage").click(function() {
      closeOutline();
   });
   function closeOutline() {
      $('#divOutline').fadeOut('fast');
   };
});
