function loadcontent(contentlocation) {

	var url = '/' + contentlocation;

	new Ajax.Request(url, {
	
	  method: 'get',
	
	  on404: function(){
	     var area = document.getElementById("artistcontent");
	     area.innerHTML = "<p>Content for artist coming soon!</p>";	 
	  },
	  onFailure: function() {
	     var area = document.getElementById("artistcontent");
	     area.innerHTML = "<p>Content for artist coming soon!</p>";	 
	  },
	  onException: function() {
	     var area = document.getElementById("artistcontent");
	     area.innerHTML = "<p>Content for artist coming soon!</p>";	    
	  },
	  onSuccess: function(transport) {
	    
	    var content = transport.responseText;
	    
	    var area = document.getElementById("artistcontent");
	    	 
	    	 
	    if(content != "null" && content != "undefined") {
	    	area.innerHTML = "";
	    	area.innerHTML = content;
	    }
	    
	  }	  	 
	  
	  
	  
	});
}