// MediaShelf mediashelf_tag_display.js v1.0, Wed Feb 21 12008

// Copyright (c) 2008 Matt Zumwalt (http://yourmediashelf.com)
//

function display_info(element) {
	deactivate_others(element);
	new Effect.Appear(element + "-info", { duration: 0.75 });
	$(element + "-tag").addClassName("active");
}
function deactivate_others(element) {
	["digital_asset_management", "tools", "community", "code_samples", "fedora", "blog", "archiving", "librarians", "fresh", "talent", "open_source", "training", "innovation", "do_amazing_things", "talk_to_us", "search"].each(function(el){
		$(el + "-tag").removeClassName("active");
		Element.hide(el + "-info");
	});
}
