function SetupLinks()
{
	$$('div.link').each(function(item) {
		item.onclick=function() {
			new Effect.toggle($(this).up('li').down('div.exp'),'slide',{duration: 0.4});
		}
	});
	var s='a'+getHash();
	$$('div.exp').each(function(item) {
			if(item.identify()!=s)
				new Effect.toggle(item.identify(),'slide',{duration: 1.0});
		}
	);
}
function getHash() {
  var hash = window.location.hash;
  return hash.substring(1); // remove #
}

