jQuery(document).ready(function(){
	$("span.popup").hover(
		function(){
			$(this).find(".rollover").css({"display": 'block'});
			$(this).find(".rollover").animate({opacity: 1, bottom: "18"}, {queue:false, duration:400});
		},
		function(){
			$(this).find(".rollover").animate({opacity: 0, bottom: "0"}, 200, "linear",
				function(){
//          alert('aaa');
					$(this).css({"display": 'none'});//find(".rollover")
//          alert('hotofka');
				}
			);
      //$(this).find(".rollover").css({"display": 'none'});
		});
		

});
