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