// JavaScript Document

///// getSocial ////////////////////////////////////////////////////////////////////////////////////
function getSocial() {
	$("#social").html('Loading ...');
	$.ajax({
  		cache: false,
		url: 'social/socialhandler.php',
  		data: {action: 'getSocial'},
  		dataType: 'html',
		type: 'post',
  		success: function(data) {getSocialResponse(data);},
  		error: function(data) {alert("Error: "+data);}
	});
}

function getSocialResponse(data) {
	$("#social").html(data);
}
