var visiblePanel = '#about';
function showPanel(newPanel) {
	$(visiblePanel).slideUp();
	$(newPanel).slideDown();
	visiblePanel = newPanel;
}

function emailMe() {
	var s = '';
	var p = new Array(109,97,105,108,116,111,58,100,101,106,97,110,46,106,97,99,105,109,111,118,105,99,64,103,109,97,105,108,46,99,111,109);
	
	for(x in p) {
		s = s + String.fromCharCode(p[x]);
	}
	
	document.location.href = s;
}

function skypeMe() {
	var s = '';
	//?call
	var p = new Array(115,107,121,112,101,58,100,101,106,97,110,46,106,97,99,105,109,111,118,105,99);
	for(x in p) {
		s = s + String.fromCharCode(p[x]);
	}
	
	document.location.href = s;
}

$(document).ready(function(){
	if(window.location.hash != '')
		if(visiblePanel != window.location.hash)
			showPanel(window.location.hash);
});


