jQuery(function($) {
	
	$('a.external').click(function(e){
		window.open(this.href);
		e.preventDefault();
	});
  	
	var emails = $('a.email');
	if(emails.length > 0) emails.defuscate();
	
	$("a[rel='lightbox']").lightBox({
		imageBtnClose: '/static/images/lightbox-btn-close.png',
		imageBtnPrev: '/static/images/lightbox-btn-prev.png',
		imageBtnNext: '/static/images/lightbox-btn-next.png'
	});

});