$(document).ready( function() {
  $('.prime_menu_1, .prime_menu_2').hover(
    function() {
      $(this).animate( { backgroundColor: '#687EB2' }, 300);
      //$(this).css('background-color','#687EB2');
      //$(this).fadeOut(200);
      //$(this).fadeIn(700);
    },
    function() {
      //$(this).css('background-color','#5E678D');
      $(this).animate( { backgroundColor: '#5E678D' }, 500);
    }
  )
})
