$(function(){

$(".menu").click(function() {

$("#utilities").slideToggle("normal");
$(this).val($(this).val()=="show" ? "hide" : "show");

});

});