$(document).ready(
	function()
	{
		$("div.content").slideUp("slow");
		$("div#web-design").animate({ opacity: "show" }, "slow");
		$("#menu a").click(function(){
		var block = $(this).attr("href");
		$("div.content").slideUp("slow");
		$(block).slideToggle("slow");
		return false;
	});
});


		

	
function doClear(theText) { if (theText.value == theText.defaultValue) { theText.value = "" } }
function doDefault(theText) { if (theText.value == "") { theText.value = theText.defaultValue } }

