//var sidebarIsFloating = false;
var mailOpen = false;

$(document).ready(function (){initialize();});

function initialize() {
	$('#mail').hide()
	$('.socialbutton').click(function(e) {
		_gaq.push(['_trackEvent', 'Social_Links', e.target.parentNode.parentNode.id]);
	});
	$('#mail_button').click(function() {
		if(mailOpen) {
			$('#mail').hide(100);
			mailOpen = false;
		} else {
			var a = 'Send me e-';
			a += 'mail: '
			a += '<b>jon';
			a += '@';
			a += 'jebruner.';
			a += 'com</b>';
			$('#mail').html(a);
			$('#mail').show(100);
			mailOpen = true;
			_gaq.push(['_trackEvent', 'Social_Links', 'E-mail']);
		}
	});
	fblg();
}

function fblg() {
	//Try to extract and log the FB user ID from the FB share iframe
	console.log($('iframe'));
}
