$(function(){ 
 
$("li.com-1, li.com-2, li.com-3, li.com-4, li.com-5, li.com-6, li.com-7, li.com-8").click(function() { 
$(".popup").stop(true, true).animate({opacity: "hide", top: "-250", height: "40px"}, 1000);
$(this).next(".popup").stop(true, true).animate({opacity: "show", top: "-200", height: "350px"}, 600);
}); 

$(".close").click(function() {
      $(".popup").stop(true, true).animate({opacity: "hide", top: "-250", height: "40px"}, 1000);
}); 
 
}); 