
$(document).ready(function(){

$(".mainNav").hover(function(e){
  $('a', this).css("color", "white");
  //alert($('.fadeNav', this).html());
  $('.fadeNav', this).stop(true, true).fadeTo("fast", .8);
}, function(e){
$('a', this).css("color", "#4e65c2");
$('.fadeNav', this).stop(true, true).fadeTo("fast", 0);
});

});