/* Fonction pour le cadre d'images aléatoires*/

/*
** Extention de vos fichiers Image.
** Le nom de vos images doivent etre du type : 
** --> 1.jpg, 2.jpg, 3.jpg, 4.jpg, .... X.jpg
** --> 1.gif, 2.gif, 3.gif, 4.gif, .... X.gif
** --> ...
*/
var extention = ".jpg" ;
/*
** Nombre d'images diférentes à afficher.
*/
var nbimage = 182 ;
/*
** Déclaration d'autres varaibles.
*/
var url;
var url2;
var rep;
var alt;

// génère un nombre aléatoirement entre 0 et x
function random2(x){
  y=Math.floor(Math.random()*x)
  return(y==x)?x-1:y;
}

function Images_Aleatoire()
{
	//Génére un nombre aléatoire, pour donner un numéro d'image.
	numimage = random2(nbimage);
	// Nom du répertoire de vos images.
	rep = "chonAlea"; 
	// Message info bulle, lors du survole de l'image affichée.
	alt = "Photo aléatoire - Cliques et Zoom";
	title = "Photo aléatoire - Cliques et Zoom";
	// Assemblage de la chaine pour afficher votre image.
	url = './' + rep + '/' + numimage + extention;
	url2 = './' + rep + '/gd/' + numimage + extention;
		
	// Affiche l'image choisie ainsi que le lien vers votre page d'accueil.
	document.write ('<div align=center><a href="'+ url2 +'" rel="lightbox" onFocus="this.blur()"><img src="' + url + '"style="border:solid 2px #FF6600; cursor: url(http://www.auxcochonsdingues.com/photoZoom/zoomin.cur), pointer; outline: none;" alt="' + alt +'"title="'+title +'" border=0 height="97px" /></a></div>');
}

/*-------------------------------------------------*/
/* Fonction pour les bannieres aléatoires*/

var nbrofban = 3 ; // nombre de bannières différentes

function bann()
{
code_html = codebann[chiffre];
changement = 600; // Temps en secondes avant la rotation
document.getElementById("banniere").innerHTML = code_html;
chiffre = parseInt(Math.random()*nbrofban); 
window.setTimeout("bann()", (changement*1000));
}
codebann = new Array()
codebann[0] = '<img src="http://www.auxcochonsdingues.com/imagesSite/dessus.gif" height="491" width="980" />';
codebann[1] = '<img src="http://www.auxcochonsdingues.com/imagesSite/dessus2.gif" height="491" width="980" />';
codebann[2] = '<img src="http://www.auxcochonsdingues.com/imagesSite/dessus3.gif" height="491" width="980" />';
chiffre = parseInt(Math.random()*nbrofban);




/***********************************************
* Floating Top Bar script- © Dynamic Drive (www.dynamicdrive.com)
* Sliding routine by Roy Whittle (http://www.javascript-fx.com/)
* This notice must stay intact for legal use.
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

var persistclose=1 //set to 0 or 1. 1 means once the bar is manually closed, it will remain closed for browser session
var startX = 210 //set x offset of bar in pixels
var startY = 5 //set y offset of bar in pixels
var verticalpos="fromtop" //enter "fromtop" or "frombottom"

function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function get_cookie(Name) {
var search = Name + "="
var returnvalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) {
offset += search.length
end = document.cookie.indexOf(";", offset);
if (end == -1) end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))
}
}
return returnvalue;
}

function closebar(){
if (persistclose)
document.cookie="remainclosed=1"
document.getElementById("topbar").style.visibility="hidden"
}

function staticbar(){
	barheight=document.getElementById("topbar").offsetHeight
	var ns = (navigator.appName.indexOf("Netscape") != -1) || window.opera;
	var d = document;
	function ml(id){
		var el=d.getElementById(id);
		if (!persistclose || persistclose && get_cookie("remainclosed")=="")
		el.style.visibility="visible"
		if(d.layers)el.style=el;
		el.sP=function(x,y){this.style.left=x+"px";this.style.top=y+"px";};
		el.x = startX;
		if (verticalpos=="fromtop")
		el.y = startY;
		else{
		el.y = ns ? pageYOffset + innerHeight : iecompattest().scrollTop + iecompattest().clientHeight;
		el.y -= startY;
		}
		return el;
	}
	window.stayTopLeft=function(){
		if (verticalpos=="fromtop"){
		var pY = ns ? pageYOffset : iecompattest().scrollTop;
		ftlObj.y += (pY + startY - ftlObj.y)/8;
		}
		else{
		var pY = ns ? pageYOffset + innerHeight - barheight: iecompattest().scrollTop + iecompattest().clientHeight - barheight;
		ftlObj.y += (pY - startY - ftlObj.y)/8;
		}
		ftlObj.sP(ftlObj.x, ftlObj.y);
		setTimeout("stayTopLeft()", 10);
	}
	ftlObj = ml("topbar");
	stayTopLeft();
}

if (window.addEventListener)
window.addEventListener("load", staticbar, false)
else if (window.attachEvent)
window.attachEvent("onload", staticbar)
else if (document.getElementById)
window.onload=staticbar