$(function() {
		
	$('div.reference h4').hover(function() {
		$('div.reference h4').removeClass('hover');
		$(this).addClass('hover');
	},
	function() {
		$('div.reference h4').removeClass('hover');
	});
	
	if(window.location.hash) {
		$('h4'+window.location.hash).next().show();
		$('h4'+window.location.hash).parent().addClass('open');
	}
	
	$('div.reference h4').each(function() {
		$('body').prepend('<a name="'+$(this).attr('id')+'"></a>');
	});
	
		
	$('div.reference h4').click(function() {
		
		var h4 = $(this);
		
		$('div.open').removeClass('open');
		
		$('div.hidden').hide();
		
		if($(this).next().is(":visible")) {
			$(this).next().hide();
		}
		else
		{
			$(this).next().show();
			$(this).parent().addClass('open');
			
		}
		return false;
	});
});

