function mentions() 
{
   window.open("mentions.html","Mentions_Legales","menubar=no, status=no, scrollbars=yes, menubar=no, width=660, height=500");
}

function openvideo() 
{
   window.open("video/index.html","Video_Demo_FreeAngel","menubar=no, status=no, scrollbars=no, menubar=no, width=600, height=470");
}

function contact() 
{
    window.open("contact.html","Nous_Contacter","menubar=no, status=no, scrollbars=yes, menubar=no, width=500, height=530");
}
	
var state = 1;
var vitesse = 5000;
var timer=setInterval("Timer()", vitesse);


function changeTimer()
{
var monDiv = document.getElementById("btnPlayPause");
	
	if (state == 0) 
	{
    clearInterval(timer);
	timer=setInterval("Timer()", vitesse);
	state = 1;
	monDiv.style.backgroundPosition = "left bottom";
		
	}
	
	else 
	{            
    clearInterval(timer);
	state = 0;
	monDiv.style.backgroundPosition = "left top";
	}
}

function stopTimer() {
	clearInterval(timer);
	state = 0;
	document.getElementById("btnPlayPause").style.backgroundPosition = "left top";
}

function Timer() {
	ScrollArrow('right','toolbar','scroller','nav01-pane');
}

$(document).ready(function(){
	
	$("#picto").hover(
 		function(){
			$("#content").find('#contenuPack:hidden').fadeIn(500);
		}
    );
	
	$("#contenuPack").hover(
 		function(){$(this).show();},
		function(){$(this).fadeOut(500);}
    );
	
});
