$(document).ready(function(){

var aboutBtn = $("#about");
var aboutMenu = $(".aboutMenu");

$(aboutMenu).fadeOut(1);



$(aboutBtn).hover(function () {$(aboutMenu).stop(true, false).fadeTo(300, 1);},function () {$(aboutMenu).stop(true, false).fadeTo(300, 0);});
$(aboutMenu).hover(function () {$(aboutMenu).stop(true, false).fadeTo(300, 1);},function () {$(aboutMenu).stop(true, false).fadeTo(300, 0);});




});


