$(document).ready(function(){
	
	$(".menu-links").toggle(function(){
		$(this).siblings("ul").show("fast");
		$(this).addClass("current");
		return false;
	},function(){
		$(this).siblings("ul").hide("fast");
		$(this).removeClass("current");
		return false;
	});
	
	
	// Remove focus outline on all links when clicked
	$("a").focus(function(){
	  $(this).blur();
	});

	$(".jumpmenu").change(function(){
		if ($(this).val() != "") document.location.href = $(this).val();
	});
	
 });

