$(document).ready(function(){ 
$("#perceptioncontent").hide();
$("#brandcontent").hide();
$("#wordcontent").hide();
$("#cheesecontent").hide();
$("#hipcontent").hide();
    //When mouse rolls over  
    $(".mainmenu").mouseover(function(){
        $(this).stop().animate({top:'-20px'},{queue:false, duration:600, easing: 'jswing'});
$("#navdescription").stop().animate( { height:"90px" }, { queue:false, duration:800 } );
    });  
 
 $("#perceptions").mouseover(function(){
$("#perceptioncontent").fadeIn('fast');
});
$("#perceptions").mouseout(function(){
$("#perceptioncontent").fadeOut('fast');
});
$("#brand").mouseover(function(){
$("#brandcontent").fadeIn('fast');
});
$("#brand").mouseout(function(){
$("#brandcontent").fadeOut('fast');
});
  $("#word").mouseover(function(){
$("#wordcontent").fadeIn('fast');
});
$("#word").mouseout(function(){
$("#wordcontent").fadeOut('fast');
});
$("#cheese").mouseover(function(){
$("#cheesecontent").fadeIn('fast');
});
$("#cheese").mouseout(function(){
$("#cheesecontent").fadeOut('fast');
});
$("#hip").mouseover(function(){
$("#hipcontent").fadeIn('fast');
});
$("#hip").mouseout(function(){
$("#hipcontent").fadeOut('fast');
});
//When mouse is removed  
    $(".mainmenu").mouseout(function(){  
        $(this).stop().animate({top:'0px'},{queue:false, duration:600, easing: 'jswing'});
$("#navdescription").stop().animate( { height:"5px" }, { queue:false, duration:800 } );
    });
});

