function init()
{
	opaciteSet('main',0);
	opaciteFadeTo('main','xajax_presentation()',0,1);
	SNOW_Weather();
}

function onResize()
{ // alert("Resized !");
	windowInnerHW();
}

function openWindow(url,w,h)
{
	x=(screen.width-w)/2;
	y=(screen.height-h)/3;
	win=window.open(url,"Info","left="+x+",top="+y+",width="+w+",height="+h+",scrollbars=yes,menubar=no,toolbar=no,statusbar=yes");
}

var winIndex = 1;

function verif_acces()
{
	xajax_verif_acces(document.getElementById('login').value,document.getElementById('pass').value);
	setTimeout("verif_acces_suite()",500);
}
function verif_acces_suite()
{
	stop=false;
	if(document.getElementById('session_id').value!='')
	{
		connexion();
		stop=true;
	}
	else
	{
		document.getElementById('MSG').innerHTML='<p align="center">Utilisateur / Mot de passe</p><p align="center">non reconnu</p><p align="center"></p>';
		stop=true;
	}
	if(stop==false)
	{
		setTimeout("verif_acces_suite()",500);
	}
}

function connexion()
{
	document.getElementById('menu_connexion').onclick= function () { deconnexion(); };
	xajax_accueil(document.getElementById('session_id').value);
}

function deconnexion()
{
	if(confirm('Déconnexion de votre session ?'))
	{
		xajax_deconnexion(document.getElementById('session_id').value);
		document.getElementById('menu_connexion').onclick= function () { xajax_connexion(); };
		setTimeout("xajax_accueil('')",1000);
	}
}

// PRESENTATION
function menu_presentation()
{
	opaciteFadeTo('main','xajax_presentation()',1,1);
	document.getElementById('top').style.background="url(images/top.jpg)";
}


// PRESTATIONS
function menu_prestations()
{
	opaciteFadeTo('main','xajax_prestations()',1,1);
	document.getElementById('top').style.background="url(images/top.jpg)";
}

function menu_prestations_mariage()
{
	opaciteFadeTo('text','xajax_prestations_mariage()',1,1);
}

// PHOTOS
function menu_photos()
{
	opaciteFadeTo('main','xajax_galeries()',1,1);
	document.getElementById('top').style.background="url(images/top.jpg)";
}

function galerie(dir_galerie)
{
	opaciteFadeTo('main',"xajax_photos('"+dir_galerie+"')",1,0);
}

function ReMoozAssign()
{
	ReMooz.assign('#photos a', {
		'origin': 'img',
		'shadow': 'onOpenEnd',
		'resizeFactor': 0.8,
		'cutOut': false,
		'opacityResize': 0.4,
		'dragging': false,
		'centered': true
	});
}

// LIVRE D'OR
function menu_livre()
{
	opaciteFadeTo('main','xajax_livre()',1,1);
	document.getElementById('top').style.background="url(images/top2.jpg)";
}

function menu_livre_ajouter()
{
	popupW=640;
	popupH=480;

	popupX=Math.round((screen.width - popupW)/2);
	popupY=Math.round((screen.height - popupH)/2);

	popupWin=window.open("livre/ajouter.php","Ajouter_un_message","top="+popupY+",left="+popupX+",width="+popupW+",height="+popupH+",toolbar=no,menubar=no,scrollbars=no");
}

// CONTACT
function menu_contact()
{
	opaciteFadeTo('main','xajax_contact()',1,1);
	document.getElementById('top').style.background="url(images/top.jpg)";
}
