$(document).ready(function(){
	
	$("a.colorbox").fancybox({
		'titlePosition'		: 'over',
		'overlayColor'		: '#fff',
		'overlayOpacity'	: 0.9,
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">' + (title.length ? ' &nbsp; ' + title : '') +' ('+ (currentIndex + 1) + '/' + currentArray.length +')</span>';
		}
	});
	
	$(".bloc_produit").mouseenter(function(){
		if(!$(this).hasClass('fade')){
			$(this).addClass('fade');
			$(this).find('.prix').fadeTo(500,0.35);
		}
	}).mouseleave(function(){
		var obj = $(this);
		$(this).find('.prix').fadeTo(500,1.00,function(){
			$(obj).removeClass('fade');
		});
	});
	
	$("#onglets div.onglet").hide();
	$("#onglets div.description").show();
	
	$("#onglets .onglets a").click(function(){
		var onglet = $(this).parent('li').attr('class');
		$("#onglets div.onglet").hide();
		$("#onglets div."+onglet).show();
		return false;
	});
	
	$('a.connexion').click(function(){
		$.fancybox({
			'href'			: 'connexion.php',
			'speedIn'		: 600,
			'speedOut'		: 200,
			'overlayOpacity': 0.85
		});
		return false;
	});
});
