// JavaScript Document
$(document).ready(function(){
$("#megaanchor1").mousedown(function() {
$("#megamenu1").fadeIn(350).show();
$(this).hover(function() {
}, function(){
$("#megamenu1").fadeOut("fast");
}); });

$("#megaanchor2").mousedown(function() {
$("#megamenu2").fadeIn(350).show();
$(this).hover(function() {
}, function(){
$("#megamenu2").fadeOut("fast");
}); });

$("#megaanchor3").mousedown(function() {
$("#megamenu3").fadeIn(350).show();
$(this).hover(function() {
}, function(){
$("#megamenu3").fadeOut("fast");
}); });

$("#megaanchor4").mousedown(function() {
$("#megamenu4").fadeIn(350).show();
$(this).hover(function() {
}, function(){
$("#megamenu4").fadeOut("fast");
}); });

});
