var avantageActivity = false;
var avantageTempo = 150;
var avantageTimer = false;
$(document).ready(function() {
	$('.avantage_tab_livraison a').mouseover(function() {
		if(avantageTimer)  clearTimeout(avantageTimer);
		avantageTimer = setTimeout(function() {
			if(!avantageActivity)
				showAvantageTab('livraison');
		},avantageTempo);
	});
	$('.avantage_tab_client a').mouseover(function() {
		if(avantageTimer)  clearTimeout(avantageTimer);
		avantageTimer = setTimeout(function() {
			if(!avantageActivity)
				showAvantageTab('client');
		},avantageTempo);
	});
	$('.avantage_tab_paiement a').mouseover(function() {
		if(avantageTimer)  clearTimeout(avantageTimer);
		avantageTimer = setTimeout(function() {
			if(!avantageActivity)
				showAvantageTab('paiement');
		},avantageTempo);
	});
	$('.avantage_tab_echange a').mouseover(function() {
		if(avantageTimer)  clearTimeout(avantageTimer);
		avantageTimer = setTimeout(function() {
			if(!avantageActivity)
				showAvantageTab('echange');
		},avantageTempo);
	});
	
	$('#blc_avantages a.avantage_link_cms').click(function() {
		window.open($(this).attr('href')+'?content_only=1',"avantage","menubar=no, status=no, scrollbars=yes, menubar=no, width=600, height=530");
		return false;
	});
//	$(".avantage_link_cms").fancybox({'hideOnContentClick'	: false,'frameWidth' :800,'frameHeight' :450});
});

function showAvantageTab(id) {
	avantageActivity = true;
	$('#blc_avantages #avantage_content').show();
	$('.avantage_content').hide();
	  $('#avantage_content').append($('#avantage_content_'+id));
	  $('#avantages_tabs li').removeClass('actif_item');
	  $('.avantage_tab_'+id).addClass('actif_item');
	  $('#avantage_content_'+id).slideDown('medium',function() {avantageActivity = false;});
}
