//**************************************************************************************************// CHARGEMENT DES FONCTIONS SOUHAITEES
$(document).ready(function(){
	open_ext_link();
	manage_cart();
	manage_sondage();
	manage_livraison();
	manage_phototheque();
	init_step1();
	init_step2();
	
	// --------------------------------------------------------------------------------------------- FLASH HOME
	if($('div.home').size() != 0){
		$('#blc-flash').media({ 
			width:     272, 
			height:    205, 
			src:       racinePath + 'sources/flash/ipnotic-anim.swf', 
			attrs:     { wmode : 'transparent' }, 
			params:    { wmode : 'transparent' }
		}); 
	}
	// --------------------------------------------------------------------------------------------- FLASH SOLUTION
	var my_solution		= $('#blc-solution');
	if(my_solution.size() != 0){ my_solution.tabs({ fx: { opacity: 'toggle' } }); }
	
	// --------------------------------------------------------------------------------------------- JQUERY THICKBOX
	tb_init('a.thickbox, area.thickbox, input.thickbox');
	imgLoader			= new Image();
	imgLoader.src		= path_img_loader;
});