
function getContent(thisContent)
	{
				// alert('You are ready to delete profile id: ' + thisProfileID);		
				getContentURL = "index.cfm?fuseaction=ajax." + thisContent + "&guid=" + guid();
				$.get(getContentURL,
					function(data)
						{
							if(data.search(/Error/) != -1)
							{
								// var objAjaxErrDiv = document.getElementById('divErrHeader');
								// document.getElementById('divAjaxErr').innerHTML = XMLHttpRequest.responseText;
								// objAjaxErrDiv.style.display = 'block';
								// objAjaxErrDiv.style.visibility = 'visible';
							} else {
								// alert(data);
								document.getElementById('divHomeContent').innerHTML = data;
								// if this is the pics page then initialize the gallery
								if(thisContent == 'pics') {
									$('#gallery a').lightBox();
								}
							}
						});
	}
