/* FUNCTIONS */
function fullScreen() {
	var URL='language_select.php';
	window.open(URL, '', 'fullscreen=yes, scrollbars=no');
}

function center(obj) {
	var w=($(document).width()-$(obj).width())/2;
	var h=($(document).height()-$(obj).height())/2;
	$(obj).css({'top': h, 'left': w});
	}
	
/* APPLICATIONS */
$(document).ready(function(){
	//Center content
	center($('.center'));
	
	// Content appear
	$('#Fader').fadeOut(3000);
	
	
	//Open window
    $("#intro a").click(function () { 
      fullScreen(); 
	  return false; 
    });
	
	//Lang_Switch
	$('#Lang_switch').fadeTo(1, 0.7);
	$('#Lang_switch').hover(
		function () {
		$(this).fadeTo('fast', 1.0);
		},
		function () {
		$(this).fadeTo('fast', 0.7);
		}
	);
	
})