$(document).ready(function(){
	$('img[id^="anons_img_"]').hover(function(){
		var id = $(this).attr('id');

		$(this).css('position','relative').attr('src',zoom_data[id][1]).stop().animate({'width':'91px','height':'91px','margin-top':'-25px','margin-bottom':'-26px'},300);
	},function(){
		var id = $(this).attr('id');

		$(this).stop().animate({'width':'40px','height':'40px','margin-top':'0px','margin-bottom':'0px'},300).attr('src',zoom_data[id][0]);
	});
});
