$(document).ready(function(){

	// hides the copy to prep it for the slide in. The hide is done with JS so
	// if the browser has no JS the copy with still show up
	$('#homeCopy').css({'bottom':'-200px', 'display':'none'});

	// Link all rel=external links to external pages:
	$("a[rel='external']").live('click', function(){
		this.target = "_blank";
	});

	$("#homeCopyHide a").click(function() {
		$("#homeCopy").hide();
		return false;
	})

});

// Object to hold all the album id's and associate them with pages.
var slideIds = {
	"home"		:	"259880",
	"alumni"	:	"256414"
	};
