$(function() {
	$('a.eventbox').click(function() {
		var opener = window.open($(this).attr('href'), "Eventbox", "width=912,height=600");
		return false;
	});
	
	$('#eventbox_viewall').click(function() {
		window.close();
		opener.location = $(this).attr('href');
		return false;
	});
	
	$("a[rel^='prettyPhoto']").prettyPhoto();
});

