jQuery(document).ready(function(){
  $("#product_options li").hover(
  function(){
    $(this).find("span").animate({opacity: "show", top: "25", display: "block", height: "200px"}, "normal");
  },
  function(){
    $(this).find("span").animate({opacity: "hide", top: "25"}, "fast");
  });

  $(".wishlist_item").click(
    function(){
      $("#wishlist_message").animate({opacity: 1}, 1500, 
        function() {
	  $("#wishlist_message").animate({opacity: 0}, 1500);
	});
    });
});


