/* global.js - Kensington-legion global JavaScript file */

KL = {
	Links:{
		rewriteExternal:function() {
			$('a.external').bind('click', function(e){
				$(this).attr('target', '_blank');
			});
		}
	},
	Gallery:{
		init:function(){
			$('#photo-gallery a').lightBox({fixedNavigation:true});
		}
	}
}

$(document).ready(function(){
	KL.Links.rewriteExternal();
	KL.Gallery.init();
});
