// AddThis Move
function moveAt() {
	var xPos = $('#content').offset();
	var yPos = $('#site-head').offset();
	if (xPos != null && yPos != null) {
		$('#addthis').css('left', (xPos.left-65)+'px').css('top', (yPos.top+90)+'px');
	}
}


$(window).load(function() {
	if ($("#divide").length) {
		var arrow = $('#arrow-left').offset();
		var foot = $('#site-foot').offset();
		$('#arrow-left').css('margin-top', (foot.top - arrow.top - 180) + 'px');
	}

	// AddThis Movement
	moveAt();
	$(window).resize(function() {moveAt();});

	// Go Back
	$('a.go_back').on('click', function(e) {
		e.preventDefault();
		history.back();
	});
});