// hide submenus 
// (if javascript is disabled, they will be visible by default)

$("li#r3").addClass("root");

$("li#r3").focusin(function() {
	$("#r3 > ul").slideDown('fast', function(){
	});
});
$("li#r3").mouseenter(function() {
	$("#r3 > ul").slideDown('fast', function(){
	});
});

$("#sidebar").mouseleave(function() {
	$(".root > ul").stop(true, true);
	$(".root > ul").slideUp('fast', function(){});
});

// links to nowhere do not scroll page to top
$(".navigation a[href='#']").click(function() {
	return false;
});

