$(document).ready(function() {
	externalLinks();
	eventPopup();
	photoPopup();
});

function externalLinks() {
	$('a[rel*=external]').each(function() {
		var linkTitle = $(this).attr('title');
		$(this).attr('title', linkTitle + ' (opens in a new window)');
		$(this).click(function() {
			window.open(this.href);
			return false;
		});
	});
};

function eventPopup() {
	$('a[rel*=event]').click( function() {
		var addr = (this.href + ' #right_column > *');
		var c = $('<div class="event_popup"><div style="text-align:center;"><img src="/facebox/loading.gif" /></div></div>');
		$(c).load(addr, function(){
			$.facebox(c);
		});
		return false;
	});
};

function photoPopup() {
	$('a[rel*=photo]').facebox({ image: this.href });
};