/* Javascript
 * background size initialisation + custom messages configuration
 * for LeComtois.com
 * by Mikaël Geljic
 * |\/|.GELJIC [à] G|\/|AIL
 */

/* NOMS DES FICHIERS PHOTO D'ARRIERE PLAN (dossier img/bgphotos) */
/* Attention : photosd en 1280px de large, minimum 800px de haut
			   photohd en 1920px de large, minimum 1200px de haut */
var photosd = "00001-1280.jpg";
var photohd = "00001-1920.jpg";
var imgpub = "banner-rr.jpg";
/* CODE COULEUR HEXADECIMAL correspondant à la couleur d'arrière plan après les limites de la pub */
var bgpub = "FFFFFF";

/* ALIGNEMENT VERTICAL DE L'IMAGE : valeurs acceptées "top" "center" ou "bottom", bien mettre "top" pour les fonds publicitaires */
var bgalign = "top";
/* PUB IMMERSIVE OU PAS : 0=fond photo, 1=semi-immersif, 2=full-immersif */
var immersif = 0;

/* ADAPTATION DE LA TAILLE DU FOND EN FONCTION DE LA RESOLUTION D'ECRAN */
/* Ne pas toucher :D */
if((screen.width>1280) || (screen.height>800)) {
	document.write("<style>body{background:url(/img.mge/bgphotos/"+photohd+") fixed "+bgalign+" no-repeat #"+bgpub+";}</style>");
} else {
	document.write("<style>body{background:url(/img.mge/bgphotos/"+photosd+") fixed "+bgalign+" no-repeat #"+bgpub+";}</style>");
}
/* AFFECTATION DU FOND PUB AU HEADER POUR SEMI-IMMERSIF */
/* Ne pas toucher :D */
if(immersif == 1) {
  document.write("<style>div#header{background:url(img.mge/bgphotos/"+imgpub+") no-repeat "+bgalign+" #"+bgpub+";}</style>");
}

/* MESSAGES PRESENTS DANS LE BLOC SUPERIEUR PERSO */
/* Attention : bien mettre la virgule après chaque message, SAUF le dernier */
var custo = new Array(
'LAISSER VIDE',
'<p class="custom-msg"><br /><br />Faîtes connaître votre Structure et vos Evénements sur&nbsp;<span class="redbold"><strong>LeComtois.com</strong></span>&nbsp;!</p>',
'<p class="custom-msg"><br /><br />Vous appréciez<br /><span class="redbold"><strong>LeComtois.com</strong></span>&nbsp;:<br /><span class="redbold"><strong>conseillez-le à vos amis&nbsp;!</strong></span></p>' ); /* ACTION PRESENTE SUR LA TOOLTIP, EN CORRESPONDANCE AVEC LES MESSAGES CUSTOMISES, 
DANS LE MEME ORDRE */ /* Attention, les 2 array doivent bien avoir le même nombre 
de lignes */ var custo_act = new Array( 'LAISSER VIDE', '<a id="custom-action" class="tooltip" href="/compte.php" title="Diffusez vos infos">Diffusez vos infos</a>', '<a id="custom-action" class="tooltip" href="/services/recommander.php" title="Conseillez le site à un ami">Conseillez le site</a>' );
/* MESSAGES PRESENTS DANS LE DEFILEUR */ /* Attention : bien mettre 
la virgule après chaque message, SAUF le dernier */ var defileur = new Array("Bienvenue sur le 1<sup>er</sup> site des loisirs et de la culture en Franche-Comté&nbsp;!", "Que faire en Franche-Comt&eacute; ? Quoi voir ? O&ugrave; ? Quand ? Comment ? Combien ?", "LeComtois.com r&eacute;pond &agrave; toutes vos questions !" );
