$(document).ready(function() {

	// Interpret location hash:
	
	var hash = window.location.hash;
	if (hash == '#ios') {
		showPanel_iOS();
	} else if (hash == '#web') {
		showPanel_web();
	} else if (hash == '#sound') {
		showPanel_sound();
	} else if (hash == '#contact') {
		showPanel_contact();
	} else if (hash == '#403') {
		showPanel_error403();
	} else if (hash == '#404') {
		showPanel_error404();
	} else { // Show default panel & hash:
		window.location.hash = '#ios';
		showPanel_iOS();
	}
	
	// Set selected content states:
	
	$('#content_menu_ios').children('a').click(function() {
		window.location.hash = this.hash;
		showPanel_iOS();
		return false;
	});
	
	$('#content_menu_web').children('a').click(function() {
		window.location.hash = this.hash;
		showPanel_web();
		return false;
	});
	
	$('#content_menu_sound').children('a').click(function() {
		window.location.hash = this.hash;
		showPanel_sound();
		return false;
	});
	
	$('#content_menu_contact').children('a').click(function() {
		window.location.hash = this.hash;
		showPanel_contact();
		return false;
	});
	
});

function showPanel_iOS() {

	// Content:
	$('#ios_panel').show();
	$('#web_panel').hide();
	$('#sound_panel').hide();
	$('#contact_panel').hide();
	$('#403_panel').hide();
	$('#404_panel').hide();
	
	// Menu:
	$('#content_menu_ios').children('a').attr('class', 'selected');
	$('#content_menu_web').children('a').attr('class', 'deselected');
	$('#content_menu_sound').children('a').attr('class', 'deselected');
	$('#content_menu_contact').children('a').attr('class', 'deselected');
	
}

function showPanel_web() {

	// Content:
	$('#ios_panel').hide();
	$('#web_panel').show();
	$('#sound_panel').hide();
	$('#contact_panel').hide();
	$('#403_panel').hide();
	$('#404_panel').hide();
	
	// Menu:
	$('#content_menu_ios').children('a').attr('class', 'deselected');
	$('#content_menu_web').children('a').attr('class', 'selected');
	$('#content_menu_sound').children('a').attr('class', 'deselected');
	$('#content_menu_contact').children('a').attr('class', 'deselected');
	
}

function showPanel_sound() {

	// Content:
	$('#ios_panel').hide();
	$('#web_panel').hide();
	$('#sound_panel').show();
	$('#contact_panel').hide();
	$('#403_panel').hide();
	$('#404_panel').hide();
	
	// Menu:
	$('#content_menu_ios').children('a').attr('class', 'deselected');
	$('#content_menu_web').children('a').attr('class', 'deselected');
	$('#content_menu_sound').children('a').attr('class', 'selected');
	$('#content_menu_contact').children('a').attr('class', 'deselected');
	
}

function showPanel_contact() {

	// Content:
	$('#ios_panel').hide();
	$('#web_panel').hide();
	$('#sound_panel').hide();
	$('#contact_panel').show();
	$('#403_panel').hide();
	$('#404_panel').hide();
	
	// Menu:
	$('#content_menu_ios').children('a').attr('class', 'deselected');
	$('#content_menu_web').children('a').attr('class', 'deselected');
	$('#content_menu_sound').children('a').attr('class', 'deselected');
	$('#content_menu_contact').children('a').attr('class', 'selected');
	
}

function showPanel_error403() {

	// Content:
	$('#ios_panel').hide();
	$('#web_panel').hide();
	$('#sound_panel').hide();
	$('#contact_panel').hide();
	$('#403_panel').show();
	$('#404_panel').hide();
	
	// Menu:
	$('#content_menu_ios').children('a').attr('class', 'deselected');
	$('#content_menu_web').children('a').attr('class', 'deselected');
	$('#content_menu_sound').children('a').attr('class', 'deselected');
	$('#content_menu_contact').children('a').attr('class', 'deselected');
	
}

function showPanel_error404() {

	// Content:
	$('#ios_panel').hide();
	$('#web_panel').hide();
	$('#sound_panel').hide();
	$('#contact_panel').hide();
	$('#403_panel').hide();
	$('#404_panel').show();
	
	// Menu:
	$('#content_menu_ios').children('a').attr('class', 'deselected');
	$('#content_menu_web').children('a').attr('class', 'deselected');
	$('#content_menu_sound').children('a').attr('class', 'deselected');
	$('#content_menu_contact').children('a').attr('class', 'deselected');
	
}

