$(function(){
	$(".sortbar a img")
		.each(function(){
			var t=$(this);
			var src= t.attr('src');
			var newSrc = src.replace('.png', '_hover.png');
			
			t.hover(function(){
				$(this).attr('src', newSrc);
			}, function(){
				$(this).attr('src', src); 
			});
		});
		
		var inter1;
		
	$('.newsBody img.fltlft')
		.mouseenter(function(){
		handle = $(this);
			inter1 = setInterval("aniT(handle)", 500);
		})
		.mouseleave(function(){
			$(this).stop().animate({maxHeight:"150px",maxWidth:"150px"}, {queue:false, duration:444});
			clearInterval(inter1);
		});
		
});

function aniT(handle){
	handle.stop().animate({maxHeight:"300px",maxWidth:"300px"}, {queue:false, duration:777})
}




