// JavaScript Document

$(document).ready(function(){  
	setVerticalSplash();
	$(window).resize(function() {
		setVerticalSplash();
	});
});
function setVerticalSplash(){
	var mh = (parseFloat($(window).height()) - 820)/2;
	if( mh > 0 ) $('#splash').css('margin-top', mh + 'px');
};

function setLang(lang, homeTo){
	$.ajax({
		   type: "GET",
		   url: "ajax.php",
		   data: "lang=" + lang,
		   success: function(){
			   	if( homeTo == 1) location.href = '/home';
				else location.reload();
		   }
	});	
}
