
$(document).ready(function () {
	
	// load alternate screen if incoming hash
	if (location.hash != '') {
		clickHomeBtn(location.hash.substr(1));
	}
	
});

// click the main button
function clickHome () {
	$(".iscreen").hide();
	$('#screen-home').fadeIn();
}

// click the "app" buttons on the home screen
function clickHomeBtn (nm) {
	$(".iscreen").hide();
	$('#screen-'+nm).fadeIn();
}


