Event.observe(document,'dom:loaded',function() {
	$$('ul#our-work li a.lightview').each(function(e) {
		e.observe('click', function(event) {
		Event.stop(event);
			Lightview.show({
				href: e.href,
				rel: 'image',
				title: e.title
			}); // end Lightview.show
		});
	});
});