$(document).ready(function() {
	var ext = /(.jpg|.jpeg|.gif|.png)$/i;
	$("#content a").each(function() {
		var obj = $(this);
		if (ext.test(obj.attr('href'))) 
			obj.addClass("image");
	});

	$("#content .image").fancybox({
		'titlePosition' : 	'over',
		'titleShow'     : 	true,
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false,
		'padding'		:	3
	});
	
});
