// JavaScript Document

var myWidth = screen.width;

window.document.scrolling = false;

function changeSize()
{
	if (myWidth < 1050)
	{
		window.document.getElementById("write").style.fontSize = "14px";
		window.document.getElementById("free").style.fontSize = "40px";
		window.document.getElementById("setting").style.fontSize = "40px";
		window.document.getElementById("beta").style.fontSize = "14px";
		
		window.document.getElementById("showComments").style.fontSize = "10px";
		window.document.getElementById("showComments").style.left = "35px";
		
		window.document.getElementById("pos1").style.left = "30px";
		
		window.document.getElementById("pos3").style.left = "80px";
		window.document.getElementById("pos3").style.top = "40px";
		
		window.document.getElementById("navBlack").style.paddingTop = "5px";
		window.document.getElementById("navBlack").style.paddingBottom = "5px";
		window.document.getElementById("navBlack").style.fontSize = "10px";
		
		window.document.getElementById("contactFormArea").style.fontSize = "10px";
		window.document.getElementById("contactFormArea").style.right = "25px";
		
		window.document.getElementById("commentBlack").style.fontSize = "10px";

		//window.document.getElementById("formComments").style.height = "20px";
		window.document.getElementById("btnWrite").style.paddingTop = "5px";
		
		window.document.getElementById("yourName").style.width = "100px";
		window.document.getElementById("yourName").style.height = "11px";
		window.document.getElementById("yourEmail").style.width = "100px";
		window.document.getElementById("yourEmail").style.height = "11px";
		window.document.getElementById("yourGoal").style.width = "300px";
		window.document.getElementById("yourGoal").style.height = "60px";
		
		window.document.getElementById("submitComment").style.fontSize = "10px";
		window.document.getElementById("submitGS").style.fontSize = "10px";
		
		window.document.getElementById("terms").style.fontSize = "9px";
	}
}

window.onload = function()
{
	changeSize();	
}

// Vous pouvez changer la vitesse (speed)
var speed = 10; 
var timer = 0; 

function preload() 
{ 
	if (document.getElementById) 
	{
		document.getElementById('preloadIMG').style.visibility='hidden';
		opacity('preloader',100,0);
	}
	
	else 
	{
	   	if (document.layers) 
	   	{	
			document.preloadIMG.visibility = 'hidden';
	   		opacity('preloader',100,0);
	  	}
	   	else 
	   	{
			document.all.preloadIMG.style.visibility = 'hidden';
			opacity('preloader',100,0);
	   	}
	}
}

function opacity(id, opacityStart, opacityEnd) 
{ 
    for(i = opacityStart; i >= opacityEnd; i--) 
	{ 
		setTimeout("changeOpac(" + i + ",'" + id + "')",(timer * speed)); 
       	timer++;
    } 
} 

// Change l'opacité des fifférents navigateur
function changeOpac(opacity, id) { 
    var object = document.getElementById(id).style; 
    object.opacity = (opacity / 100); 
    object.MozOpacity = (opacity / 100); 
    object.KhtmlOpacity = (opacity / 100); 
    object.filter = "alpha(opacity=" + opacity + ")"; 
	
	if (opacity == 0)
	{
		document.getElementById('preloader').style.visibility='hidden';
	}
} 


window.onload = function() { preload();}

window.document.write("<style type=\"text/css\">#preloader { display: block; }</style>");