function setProfileUI()
{
    $(".profileInterests").hide();
    $(".profilePersonal").hide();
    $(".profileContact").hide();
}

function expand(div)
{
    $("div#"+div).toggle();
}

function updateProfile()
{
    variables=$("form#profileForm").serialize();
    $.post("php/siteActions.php", variables, function(reponse){
	    $("div#notifications").html("Your profile has been updated");
	    $("div#notifications").show();	    
	});
}

function showProfile()
{
    if(profileTabIndex==null)
	{
	    $tabs.tabs('add',"php/content.php?page=profile", 'My Profile');	    
	    profileTabIndex=$tabs.tabs('length')-1;
	    $tabs.tabs('select', profileTabIndex); 
	    $tabs.bind('tabsload', function(event, ui) {
		    setProfileUI();
		});	
    setProfileUI();
	}
    else
	{
	    $tabs.tabs('url',profileTabIndex,"php/content.php?page=profile");	    
	    $tabs.tabs('select', profileTabIndex); 
	}

}