$(document).ready(function(){
	// Curvy Corners
    /*var settings = {
        tl: { radius: 10 },
        tr: { radius: 10 },
        bl: { radius: 10 },
        br: { radius: 10 },
        antiAlias: true,
        autoPad: true,
        validTags: ["div"]
    };
    $("#resources").curvy(settings);*/
	
	/* 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%' );		
	}
});