$(window).load(function(){
	$('a.fb img').each(function(){
		var Width 			= parseInt($(this).width());
		var Height 			= parseInt($(this).height());
		var LeftOffset	= parseInt((140 - Width) / 2);
		var TopOffset		=	parseInt((140 - Height) / 2);

		$(this).css({
			'left'	:	LeftOffset + 'px',
			'top'		:	TopOffset + 'px'
		});
	});
});

$(document).ready(function(){

	$('a.fb').fancybox();
	
});
