function toggleElements() {

	var id = location.hash.substring(1);
	$('.toggle').each(function() {
		$(this).prev().html('<a href="#" class="toggleLink">'+$(this).prev().html()+'</a>');
		if ($(this).prev().attr('id') != id || id == false) $(this).hide();
	});
	$('a.toggleLink').click(function() {
		$(this).parent().next('.toggle').slideToggle('slow');
		return false;
	});
}

$(document).ready(function() {
	toggleElements();
	
	$('.sf-menu a').click(function(){
		var id = $(this).attr('href').replace(/.*#/, '');
		$('a.toggleLink').each(function() {
			$(this).parent().next('.toggle').slideUp();
		});
		$('#'+id).next('.toggle').slideToggle('slow');
	});
});


