function selectLanguage(lang) {
	$("#languageValue").val(lang);
	$("#fader-container").animate({top: -600, opacity: 0}, 400, "easeInOutCubic", function() { $(this).remove() });
	$("#logo-landingpage").delay(75).animate({top: 600, opacity: 0}, 325, "easeInOutCubic", function() { $(this).remove() });
	$("#footer, #languages").animate({bottom: -300, opacity: 0}, 400, "easeInOutCubic");
	
	
	$("#main-bg").delay(400).animate({opacity: 1}, 400, function() {
		$.ajax({
			url: "main.php?lang=" + lang, 
			success: function(response) {
				$("#wrap").html(response);
				$("#logo, #menu, #search, #footer").fadeIn(300);
			}
		});
	});
}



function selectLanguageImmediately(lang) {
	$("#languageValue").val(lang);
	$("#fader-container").animate({top: -600, opacity: 0}, 400, "easeInOutCubic", function() { $(this).remove() });
	$("#logo-landingpage").delay(75).animate({top: 600, opacity: 0}, 325, "easeInOutCubic", function() { $(this).remove() });
	$("#footer, #languages").animate({bottom: -300, opacity: 0}, 400, "easeInOutCubic");
	
	
	setTimeout(function() {
		$.ajax({
			url: "main.php?lang=" + lang, 
			success: function(response) {
				$("#wrap").html(response);
				$("#logo, #menu, #search, #footer").fadeIn(300);
				
				pageShow('terms', '9');
			}
		});
	}, 400);
}
