var article_pas = 15;
var article_temps = 15;
var article_timeout_scrolling;

function projet_load()
{
	fiche_article_scroll();
}
function fiche_article_scroll()
{
	// Provoque l'apparition du scroll si trop de vignettes.
	if(ID('article_scrollzone'))
	{
		var zone = ID('article_scrollzone');
		var scroller = ID('article_scroller');
		var bloc = ID('article_vignettes');
		var fhaut = ID('fleche_haut');
		var fbas = ID('fleche_bas');
		
		var hzone = get_height(zone);
		var hscroller = get_height(scroller);
		
		if(hscroller > hzone)
		{
			fhaut.style.display = 'block';
			fbas.style.display = 'block';
		}
		else
		{
			zone.style.height = get_height(zone) + 60 + 'px';
			zone.style.top = '0';
		}
		
		bloc.style.visibility = 'visible';
	}
}
