/** ===prevent fx queue buildup
************************************************************
************************************************************/
$(document).ready(function() {
  $('.top-nav ul')
    .hover(function() {
      $(this).animate({ bottom: 0}, 'fast');
    }, function() {
      $(this).animate({ bottom: 0 }, 'fast');
    });
    
  $('.top-nav ul a')
    .hover(function() {
      $(this).stop().animate({ bottom: 6 }, 'fast');
    }, function() {
      $(this).stop().animate({ bottom: 0 }, 'fast');
    });
		
});

