//<![CDATA[
	/**************************************************
	*	Affiche la Lightbox Standard
	**************************************************/
	ShowLightBox = function( content )
	{
		document.getElementById( 'lightbox' ).style.display = '';
		document.getElementById( 'lightbox_content' ).style.display = '';
		document.getElementById( 'lightbox_content' ).innerHTML = content;
	}
	/**************************************************
	*	Masque la Lightbox Standard
	**************************************************/
	HideLightBox = function( )
	{
		document.getElementById( 'lightbox_content' ).innerHTML = '';
		document.getElementById( 'lightbox_content' ).style.display = 'none';
		document.getElementById( 'lightbox' ).style.display = 'none';
	}
	/**************************************************
	*	Affiche la Lightbox des Details Produit
	**************************************************/
	ShowThumbnailsLightBox = function( content )
	{
		document.getElementById( 'thumbnails_lightbox' ).style.display = '';
		document.getElementById( 'thumbnails_lightbox_content' ).style.display = '';
		document.getElementById( 'thumbnails_lightbox_content' ).innerHTML = content;
	}
	/**************************************************
	*	Masque la Lightbox des Details Produit
	**************************************************/
	HideThumbnailsLightBox = function( )
	{
		document.getElementById( 'thumbnails_lightbox_content' ).innerHTML = '';
		document.getElementById( 'thumbnails_lightbox_content' ).style.display = 'none';
		document.getElementById( 'thumbnails_lightbox' ).style.display = 'none';
	}
	/**************************************************
	*	Affiche la Lightbox du Zoom
	**************************************************/
	ShowZoomLightBox = function( content )
	{
		document.getElementById( 'product_lightbox' ).style.display = '';
		document.getElementById( 'product_lightbox_content' ).style.display = '';
		document.getElementById( 'product_lightbox_content' ).innerHTML = content;
	}
	/**************************************************
	*	Masque la Lightbox du Zoom
	**************************************************/
	HideZoomLightBox = function( )
	{
		document.getElementById( 'product_lightbox_content' ).innerHTML = '';
		document.getElementById( 'product_lightbox_content' ).style.display = 'none';
		document.getElementById( 'product_lightbox' ).style.display = 'none';
	}
//]]>