$(document).ready(function(){
	$("a[rel*=lightbox]").each(function(i) { 
        $(this).overlay({ 
			oneInstance: false,  
            closeOnClick: false,  
			target: '#lightbox',
			expose: '#f1f1f1',
			effect: 'apple'
		}).gallery({
			template: '<strong>${title}</strong>',
			speed: 800
		});
    }); 
});

