/*
 * This javascript file contains the javascript needed globally,
 * including parts of the site that are embedded in other sites.
 * It is in a separate file from global.js, to minimize the amount js
 * that needs to be included by other sites.
 */


$(document).ready(function(){
	/* Open .new-window links in a new window */
	$('a.new-window').click(function(){
		window.open(this.href);
		return false;
	});

	/* Let .show-more links show all their hidden .more siblings. */
	$('.more').hide();
	$('.show-more').css("display","block");
	
	$('.show-more').click(function() {
		$('.more',$(this).parent()).show();
		$(this).hide(); 
		return false;
	});
});

