// JavaScript Document

	Shadowbox.init({
		// let's skip the automatic setup because we don't have any
		// properly configured link elements on the page
		//skipSetup: true
		overlayOpacity: 0.8//,
		//animate: false
	});

	$(document).ready(function() {
		$("#footer span.endo").css('display','inline-block');
		$('span.credits').hide();
		$('#footer a.latch').click(function() {
			$('span.credits').slideToggle();
		});
		getTwitters('twert', { 
			id: 'jettyfishery', 
			count: 1, 
			enableLinks: true, 
			ignoreReplies: true, 
			clearContents: true,
			template: '%text% : <a href="http://twitter.com/%user_screen_name%/statuses/%id%/">%time%</a>'
		});
	});
