//«Copyright 2007 Max Barel http://ac-mb.info a_x@ac-mb.info»

$(function () {
	//compteurs artrinet
	// var head = document.getElementsByTagName('head')[0];
	// var artrinet = document.createElement('link');
	// artrinet.rel = 'stylesheet';
	// artrinet.href = 'http://contact.active-art.net/compteur.php?i=2055&r='+document.referrer;
	// artrinet.onload = artrinet.onreadystatechange = function() { head.removeChild( artrinet ); };
	// head.appendChild(artrinet);

	var artrinet = document.createElement('img'), div = document.createElement('div');
	artrinet.src = 'http://contact.active-art.net/compteur.php?i=2055&r='+document.referrer;
	div.appendChild(artrinet);
	document.body.appendChild(div);
	div.style.display = 'none';
	// document.getElementsByTagName('body')[0].appendChild(div);
	// $(artrinet).load(function() { body.removeChild( div ); });, body = document.getElementsByTagName('body')[0]
	
	// var artrinet = document.createElement('object');
	// artrinet.data = 'test.php';
	// artrinet.style.width = 0;
	// artrinet.style.height = 0;
	// artrinet.style.display = 'none';
	// document.getElementsByTagName('body')[0].appendChild(artrinet);

	$('h1, #menu').hide();

	var haut = $('#fond')[0].offsetHeight
		, larg = $('#fond')[0].offsetWidth
	;
	$('#fond').css({'position': 'absolute', 'top': haut / 2, 'left': larg / 2, 'overflow': 'hidden', 'width': 0, 'height': 0});
	$('#fond').animate({'top': '0', 'left': 0, 'width': '100%', 'height': '100%'}, 1500, function () {
		$('h1, #menu').fadeIn();
		$('#fond').removeAttr('style');
		//positionnement initial
		mise_en_page();
	});

	//gestion redimensionnement ultérieur
	$(window).resize(mise_en_page);
});

function mise_en_page() {
	$('h1').css('right', ($('#fond')[0].offsetWidth - $('#fond img')[0].width) / 2);
}