$(document).ready(function() {
var l = $("a:has(img)[href$='.jpg'], a:has(img)[href$='.jpeg'], a:has(img)[href$='.gif'], a:has(img)[href$='.png'], a:has(img)[href$='.bmp']");
		l.each(function(){
		$(this).addClass('fancyb');
		$(this).attr('rel','group');
});

	$(".fancyb").fancybox({
		'zoomSpeedIn': 250,
		'zoomSpeedOut': 200
	});
});
