// From John Young, after Randy, Chris and I fixed JS bugs in The Sandy Pickle
// Don't break browsers that don't have firebug installed...
try {
	console.assert(1);
} catch(e) {
	console = {
		log: function() {},
		assert: function() {}
	}
}

// WHEN DOCUMENT HAS LOADED...
jQuery('document').ready(function(){
	
	jQuery(".lightbox").lightbox({
		fileLoadingImage : wp.templateURL+'/images/loading.gif',
		fileBottomNavCloseImage : wp.templateURL+'/images/closelabel.gif',
		displayTitle: false,
	});
	
});

