// remove the registerOverlay call to disable the controlbar
hs.registerOverlay(
	{
		thumbnailId: null,
		overlayId: 'controlbar',
		position: 'top right',
		hideOnMouseOut: true
	}
);

hs.graphicsDir = 'highslide/graphics/';
hs.outlineType = 'rounded-white';
// Tell Highslide to use the thumbnail's title for captions
hs.captionEval = 'this.thumb.title';

hs.graphicsDir = 'highslide/graphics/';
hs.outlineType = 'rounded-white';
hs.outlineWhileAnimating = true;

function viewText(obj)
{
	var el = document.getElementById(obj);
	if(el.style.display != "block")
	{
		document.getElementById('fleche'+obj).innerHTML = "<img src='pictures/design/picto-triangle-fc2.gif' alt='' /> ";
	}
	else
	{
		document.getElementById('fleche'+obj).innerHTML = "<img src='pictures/design/picto-triangle-fc1.gif' alt='' /> ";
	}
}

