$(document).ready(function(){
	/* Absolute Center */
	
	var height = parseInt( $( '#wrapper' ).css( 'height' ) );
	var top = ( screen.height - height ) / 4;
	$( '#wrapper' ).css( 'margin-top',top );
	
	/* Flags Correction */
	
	/*if( screen.width <= 800 )
	{
		$( '#flagES' ).css( 'right', '25.9%' );
		$( '#flagEN' ).css( 'right', '21.9%' );
		$( '#flagBR' ).css( 'right', '18%' );		
	}
	else if( screen.width <= 640 )
	{
		$( '#flagES' ).css( 'right', '20.8%' );
		$( '#flagEN' ).css( 'right', '15.8%' );
		$( '#flagBR' ).css( 'right', '11%' );		
	}*/
});