$(function() {
	
	var src = $('script[src$="jquery.js"]').attr('src').replace('js/jquery.js', '');
	
	$('a[rel^="lightbox"]').lightBox({
		overlayBgColor: '#000',
		overlayOpacity: 0.6,
		imageBlank: src + 'images/lightbox-blank.gif',
		imageLoading: src + 'images/lightbox-ico-loading.gif',
		imageBtnClose: src + 'images/lightbox-btn-close.gif',
		imageBtnPrev: src + 'images/lightbox-btn-prev.gif',
		imageBtnNext: src + 'images/lightbox-btn-next.gif',
		containerResizeSpeed: 350,
		txtImage: 'Image',
		txtOf: 'sur'
   });
   
   $('.info-bulle-css').each(function(){
   		
   		var id= '#'+$(this).attr('id');
	   	
	   	var info_content = $(id +' ~ div').html();
	   		
	   	$(id).simpletip({
	    	content: info_content,
	    	fixed:false
		});
   });
   
   $('body').append('<div id="popup-aide"></div>');
   
   $('a[class^="popup-aide"]').click(function(){
		
		$('#popup-aide').attr('title', $(this).attr('title'));
		$('#popup-aide').load($(this).attr('rel')).dialog({modal:true, draggable:false, resizable:false, width:631, close:function(event, ui){$(this).dialog('destroy');}});
	});
	
	//$('#popup-aide').load(src+'../../_include/aide-boutiquenondispo.php').dialog({buttons:{'Fermer':function(){$(this).dialog("close");}}, modal:true, draggable:false, resizable:false, width:631, close:function(event, ui){$(this).dialog('destroy');}});
   
});