function saveBackgroundColor(code, username)
{
	
	xmlHttp=getXmlHttpObject()
/*
	xmlHttp.onreadystatechange = function()
	{
      
  	if(xmlHttp.readyState == 4){        
      document.getElementById('test').innerHTML = xmlHttp.responseText;
    }else{
			//document.getElementById('storySummary').innerHTML = loadingGraphic;
		}
  }
*/			
	var url = siteURL
	
	url=url+'/members/'+username+'/profile/bgcolor?c='+code;
	
	xmlHttp.open("POST",url,true);
	xmlHttp.send(null);
		
}

function changeColor(code, username)
{
	var a = new Array("memberInformation", "memberVideo", "memberTwoCents", "memberStories", "memberComments", "memberFriends", "memberDetails");
	for(var i=0; i<a.length; i++){	
		if(document.getElementById(a[i])){
			document.getElementById(a[i]).className = "box"+code;
		}
	}
	document.getElementById("profileModuleTop").className = "profileModuleTop"+code;
	document.getElementById("profileModuleMiddle").className = "profileModuleMiddle"+code;		
	document.getElementById("profileModuleBottom").className = "profileModuleBottom"+code;
	saveBackgroundColor(code, username);
}
