/* Javascript for pgIndexLibraryGuide.cfm */

/* RY 9/5/07 Move all js from pgIndexLibraryGuide.cfm here */

var init = function() {
	
	var links = document.getElementById("catherwoodGuide").getElementsByTagName("a");
	YAHOO.util.Event.addListener(links, "click", function(event) {
		// don't override existing javascript on the href attribute
		if (!/^javascript/.test(this.href)) {
			YAHOO.util.Event.preventDefault(event);
			window.open(this.href);
		}
	});
	
	YAHOO.util.Event.addListener("dropDownResourceSelect", "change", function() {
		selectResourceFromPopup(this);
	});
		
};

YAHOO.util.Event.addListener(window, "load", init);
