function signUp(){
	
	name = $("#name").val();
	email = $("#emailadd").val();
	
	$.post("includes/classes/insert.class.php?act=3",{name:name,email:email},function(data){
		$("#dialog").empty();
		$("#dialog").dialog({
		modal: true,
		width: 330,
		title: 'Members Sign Up',
		 buttons: [
    {
        text: "Close",
        click: function() {
		$(this).dialog("close"); }
    }
],
}).append(data);
		
	});
	
	
}

function showCategories(){
	$("#leftNav").toggle("slide", { direction: "left" }, 1000);
	//$("div.middlecontent").hide("slide", { direction: "right" }, 1000);
	
	
}
