// 1 Ouverture div jeu
// 2 Fermeture div jeu
// 3 fonction de scroll
// 4 Affichage de l'interview
// 5 Switch des interview


// Ouverture div jeu
/***************************************/
function linkDiv(jeu) {
	$("#descr_jeux_box").load('include/jeux/'+jeu+'.html','',$("#descr_jeux").fadeIn("slow") );
}
// Fermeture div jeu
/***************************************/
function closeDiv() {
	$("#descr_jeux").fadeOut("normal", function(){$("#jeux_loaded").remove()});
	
}

// fonction de scroll
/***************************************/
var Timer;
var Pas = 7;
function moveLayer(Sens) {
	listing = $("#scroll");
	//alert( parseInt(listing.css('top')) + (Pas*Sens) + ' ; ' + -$("#scroll").height()  );
    if(parseInt(listing.css('top')) + (Pas*Sens)>0)  {
		clearTimeout(Timer);
	}
	else if ( parseInt(listing.css('top')) + (Pas*Sens) < -$("#scroll").height()+150 ) {	
		clearTimeout(Timer);
	}
    else {
        listing.css('top', parseInt(listing.css('top')) + (Pas*Sens))
	}
	Timer = setTimeout("moveLayer(" + Sens + ");", 30);
}

// Affichage de l'interview
/***************************************/
function hideall(itw)
{
	$('#gauche div').not('#gauche div div, #interview_'+itw).hide();
	$('#btn_itw_' +itw).hide();
}
// Switch des interview
/***************************************/
function hideit(id) 
{
	if($('#gauche div:animated').size() == 0) {
		$('#gauche div').not('#gauche div div').fadeOut(500);
		setTimeout(
			function(){$('#interview_'+id).fadeIn(500);},
			1000
		);
		$('#droite div').show();
		$('#btn_itw_' +id).hide();
	}
}
