$(document).ready(function() {

	$(".outerbutton ul").hide();    
	
	$(".outerbutton").hover(function(){
	$(this).next("ul").show()
	  .siblings("ul:visible").hide();
    });
});



