var FocusPic = function() {
	$("img.focus").css({margin: 5}).hover(
		function(){ $(this).stop().animate({width: 120, height: 109, margin: 0},100) },
		function(){ $(this).stop().animate({width: 110, height: 100, margin: 5},100) }
	);
}
