$(document).ready(function () {
  $('.menu').toggle(
    function () {
      $('#menu-img').animate({
        top: "360px"
        }, 'slow');
      $('.product_menu').slideDown('slow');
      $('#menu-img').attr('src', '/images/menu-hide.png');
    }, function() {
      $('#menu-img').animate({
        top: "140px"
        }, 'slow');
      $('.product_menu').slideUp('slow');
      $('#menu-img').attr('src', '/images/menu-open.png');
  });
});
