$(document).ready(function(){

	// remove focus outline on all links when clicked
  $("a").focus(function(){
    $(this).blur();
  })
  
  $("#fld_contact_how").change(function(){
	  //in here, check the value of the select box.
	  if ($(this).val() == "Phone"){
	    //then in here show the row!
	    $("#showme").show();
	  } else {
	    //if the select value isnt what you want it to be, hide the row!
	    $("#showme").hide();
	  }
	});
  
  $(".menu-links").toggle(function(){
		var rel = "#" + $(this).attr("rel");
		$(rel).show("fast");
		return false;
	},function(){
		var rel = "#" + $(this).attr("rel");
		$(rel).hide("fast");
		return false;
	});
 
  
})
