

function ShowAndroid()
{
	$("#main").fadeOut(function (){
		$("#androidAppTypeLink").fadeOut();
		$("#iOS").fadeOut(function () {
			$("#android").fadeIn();
			$("#iosAppTypeLink").fadeIn();
		});
	});
}

function ShowIOS()
{
	$("#main").fadeOut(function (){
			$("#iosAppTypeLink").fadeOut();
			$("#android").fadeOut(function () {
				$("#iOS").fadeIn();
				$("#androidAppTypeLink").fadeIn();
			});
		});
}

//Bind Handlers & Prep Initial Visit
$(function() {
    $.History.bind("android", ShowAndroid);
    $.History.bind("iOS", ShowIOS);
});
