$(document).ready(function ()
{

	$('div.link').click(function() {
		$(this).parent('li').children('div.exp').slideToggle("slow");
	});

	var s='a'+getHash();
	$('div.link').each(function () { 

		if($(this).parent('li').children('div.exp')[0].id != s)
		{
			$(this).click();
		}
	});
});
function getHash() {
  var hash = window.location.hash;
  return hash.substring(1); // remove #
}


