$(document).ready(function() {
	// ---------------------------------------------------
	//	Code for Home Slider
	// ---------------------------------------------------
	$('#promotions').cycle({
		fx:     			'scrollHorz',
		next:   			'#fleche-droite',
		prev:   			'#fleche-gauche',
		pager:				'div#nav-promotions ul',
		activePagerClass:	'actif',
		pagerAnchorBuilder: function(idx, slide) { 
			return 'div#nav-promotions li:eq(' + idx + ')';
		},
	    timeout:  	5000
	});
	
	$('#banners').cycle({
		
	});

	// ---------------------------------------------------
	//	Code for Home Slider Qtip
	// ---------------------------------------------------
	$('a.item').each(function() {
		 $(this).qtip(
		  {
			  content: {
				text: (($(this).attr('body')) ? $(this).attr('body') : $(this).attr('title')), 
				title: {
					text: (($(this).attr('body')) ? $(this).attr('title') : '')
				}
			},
	
			 position: {
				at: 'top center', // Position the tooltip above the link
				my: 'bottom center',
				viewport: $('#promotions')
	
			 },
			 show: {
			   // event: 'click mouseenter',
				solo: true // Only show one tooltip at a time,
			 },
			 hide: {
				//event: 	'unfocus'
			 }, 
			  style: {
				  classes: 'ui-tooltip-'+box_color+' ui-tooltip-'+box_style+''
				},
				events: {
				  show: function(e, api)
				  {
					 $('#promotions').cycle('pause');
				  },
				  hide: function(e, api)
				  {
					 $('#promotions').cycle('resume');
				  }
			   }     
		  });
	 });
	
});
