Team:Central Calgary/central javascript.js

// JavaScript Document

$(window).resize(function() {

 if ($(this).width() < 811) {
   $("#menuImage").fadeOut("fast");
 } else {
   $("#menuImage").show();
   }

});