function loadMenu() {
var menuTimer;
$("#post-it-products").hover(function() {$("#post-it-products").addClass("over");clearTimeout(menuTimer)}, function(){menuTimer = setTimeout("$('#post-it-products').removeClass('over')", 500);})
$("#post-it-home").hover(function() {$('#post-it-products').removeClass('over')})
$("#post-it-buy").hover(function() {$('#post-it-products').removeClass('over')})
$("#post-it-offers").hover(function() {$('#post-it-products').removeClass('over')})
$("#post-it-perks").hover(function() {$('#post-it-products').removeClass('over')})
;}
$(function(){loadMenu()});