
// COMMON: Load page in a new window; use class="new_window" on <a> tags
$(document).ready(function(){
	$('a.new_window').click(function(){
		w = window.open(this.href, 'new_window');
		return false;
	});
});


// LIGHTBOX: http://colorpowered.com/colorbox/
$(document).ready(function(){
	$("a[rel='lightbox']").colorbox({
		transition: 'fade',
		current: '{current} / {total}',
		maxWidth: '90%',
		maxHeight: '90%'
	});
});

