			$(function() {
				var ajaxman = $.manageAjax({manageType: 'abortOld', maxReq: 0});
			  $("a.Comevlink").hover(
			  		function(e) {
			  var html='<div id="info">';
			  					html+='<img src="/images/loader.gif" id="loading" border=0>';
			  					html+='</div>';
							$(this).append(html).children('#info').hide().fadeIn(400);
							var wid=e.pageX+25+450 ;
							if (wid < $(window).width()) {
								$('#info').css('top', e.pageY+10)
													.css('left', e.pageX+10);	
							} else {
								$('#info').css('top', e.pageY+10)
													.css('left', $(window).width()-470);	
							}
//					 	ajaxman.abort();
			  			ajaxman.add({
			  				url: '/ajax/news.html',
			  				type: 'GET',
			  				dataType: "html",
			  				cache: true,
			  				data: 'id='+$(this).attr("id")+'&section='+$(this).attr("section"),
			  				success: function(result, textStatus) {
			  					$('#loading').remove();
			  					$("#info").animate({opacity: 0.95}).html(result);
			  				}
			  			});			  
			  
			  }, function() {
							$('#info').remove();
			  });

			  $('a.Comevlink').mousemove(function(e){
							var wid=e.pageX+30+450 ;
							if (wid < $(window).width()) {
								$('#info').css('top', e.pageY+10)
													.css('left', e.pageX+10);	
							} else {
								$('#info').css('top', e.pageY+10)
													.css('left', $(window).width()-470);	
							}
								  
			});
			});