$(document).ready(function() { 

	
    
    $("a[href$=jpg] img").parent().addClass('album');
	$("a[href$=jpg] img").parent().attr('rel', 'album');
	$("a[href$=jpeg] img").parent().addClass('album');
	$("a[href$=jpeg] img").parent().attr('rel', 'album');
	
	
	$(".album").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'titlePosition' :   'over'
	
		});

	
	

	
	


});
