 /** 
* @projectDescription L'Evenement VIP
* @author	[FTVI] Guyllaume Doyer
*/


// ---------------------------------------------------------------------------------------------- \\
// Jquery init event
// ---------------------------------------------------------------------------------------------- \\
$(document).ready(function()
{
	//
});



function ShowCarouselPics(picsURL)
{
		// Do the cleaning : remove any existing "#thickboxTMPlink"
		$("#thickboxTMPlink").remove();
	
		// Create a temporary link from the url received in parameter from the flash
		$("#CarrouselFlashCtnt").append('<a href="' + picsURL + '" class="thickbox hidden" id="thickboxTMPlink"><span class="hidden">Afficher l\'image</span></a>');		
			
//			$("a.thickbox#thickboxTMPlink").unbind("click");
			tb_remove;
			
			// Initialise tickbox for newly loaded content
			tb_init('a.thickbox#thickboxTMPlink');
			
			// Fire the click event on the temp link
			$("#thickboxTMPlink").click();
}