var SexyLightbox = null;

window.addEvent('domready', function () {
	if (SexyLightbox == null) {
		SexyLightbox = new SexyLightBox({color:'black', dir: '/js/sexylightbox/sexyimages'});
	}
	return;
	
	var tab = new Element('div').setStyles({
		position: 'absolute', top: 150, left: 0, background: '#999',
		cursor: 'pointer', padding: '1px 1px 1px 0',
		'z-index': 1000
	}).inject($$('body')[0], 'top');
	tab.adopt(new Element('div').setStyles({
		width: 20, height: 150,
		background: 'url(/images/fleche-droite.png) no-repeat center center #444',
		border: '1px solid #FFF', 'border-left': 'none'
	}).set('title', 'Voir le menu principale'));
	
	var swfContainer = new Element('div', {id: 'menuSwf'}).setStyle('display', 'none');
	swfContainer.inject(tab, 'after');
	
	var swiff = new Swiff('/_medias/menusIndex.swf');
	var swfContainerSwiff = new Swiff('/_medias/menusIndex.swf', {
		container: 'menuSwf', width: 950, height: 496
	});
	
	tab.addEvent('click', function (event) {
		SexyLightbox.display('#TB_inline?height=510&width=960&inlineId=menuSwf');
	});
});
