$(document).ready(function() {
	var $root = $('body');
	var page = document.location.href;
	page = page.split('#')[1];
	
	// content-pages
	function showPage(page) {
		switch (page) {
			case "home":
				$root.find('.frontPage').show();
				$root.find('.howDoesItWork').hide();
				$root.find('.blog').hide();
				$root.find('.contact').hide();
				if ($.cookie('lang') != undefined && $.cookie('lang') == 'fi') {
					$root.find('.english').hide();
				}
				if ($.cookie('lang') == undefined || $.cookie('lang') == 'en') {
					$root.find('.finnish').hide()
				}
				break;
			case 'how_does_it_work':
				$root.find('.frontPage').hide();
				$root.find('.howDoesItWork').show();
				$root.find('.blog').hide();
				$root.find('.contact').hide();
				if ($.cookie('lang') != undefined && $.cookie('lang') == 'fi') {
					$root.find('.english').hide();
				}
				if ($.cookie('lang') == undefined || $.cookie('lang') == 'en') {
					$root.find('.finnish').hide()
				}
				break;
			case 'blog':
				$root.find('.frontPage').hide();
				$root.find('.howDoesItWork').hide();
				$root.find('.blog').show();
				$root.find('.contact').hide();
				if ($.cookie('lang') != undefined && $.cookie('lang') == 'fi') {
					$root.find('.english').hide();
				}
				if ($.cookie('lang') == undefined || $.cookie('lang') == 'en') {
					$root.find('.finnish').hide()
				}
				break;
			case 'contact':
				$root.find('.frontPage').hide();
				$root.find('.howDoesItWork').hide();
				$root.find('.blog').hide();
				$root.find('.contact').show();
				if ($.cookie('lang') != undefined && $.cookie('lang') == 'fi') {
					$root.find('.english').hide();
				}
				if ($.cookie('lang') == undefined || $.cookie('lang') == 'en') {
					$root.find('.finnish').hide()
				}
				break;
		}
	}
	
	
	// landing
	if (page != undefined && page != '' && page != 'sparks' && page != 'members') {
		showPage(page);
	}
	else {
		document.location.href = '#home';
		}
	if ($.cookie('lang') != undefined && $.cookie('lang') == 'fi') {
		$root.find('.english').hide();
	}
	if ($.cookie('lang') == undefined || $.cookie('lang') == 'en') {
		$root.find('.finnish').hide()
	}
	
	
	// top-navigation
	$root.find('#adspark .header a').live('click', function() {
		showPage($(this).attr('href').split('#')[1]);
	});
	
	
	// language-navigation
	$root.find('.footer .langs a').live('click', function() {
		var selectedLang = $(this).attr('class');
		$.cookie('lang', selectedLang);
		if (selectedLang == 'fi') {
			$root.find('.english').hide();
			$root.find('.finnish').show();
			if (document.location.href.split('#')[1] != undefined) {
				showPage(document.location.href.split('#')[1]);
			}
		}
		if (selectedLang == 'en') {
			$root.find('.finnish').hide();
			$root.find('.english').show();
			if (document.location.href.split('#')[1] != undefined) {
				showPage(document.location.href.split('#')[1]);
			}
		}
		return false;
	});
});
