jQuery.noConflict();
jQuery(function() {

	jQuery(".bt_pop").click(function(){
		jQuery("#zoom").show();
		return false;
	});
	
	jQuery("#zoom a").click(function(){
		jQuery("#zoom").hide();
		return false;
	});	
	
	jQuery(".vertus_composition #zoom").click(function(){
		jQuery("#zoom").hide();
		return false;
	});	
	
	jQuery("#nature a").click(function(){
		jQuery("#nature a").hide();
		jQuery("#nature_content").show();
		jQuery("#aromatise").hide();
		return false;
	});	
	
	jQuery("#aromatise a").click(function(){
		jQuery("#aromatise img").show();
		jQuery("#aromatise_content").show();
		jQuery("#aromatise a").hide();
		return false;
	});

	jQuery("#nature_content a").click(function(){
		jQuery("#nature_content").hide();
		jQuery("#aromatise").show();
		jQuery("#aromatise a").hide();
		jQuery("#aromatise_content").show();
		jQuery("#aromatise").addClass('nouveau');		
		jQuery("#aromatise div").addClass('toggled');
		jQuery("#aromatise img").show();
		return false;
	});	
	
	jQuery("#aromatise_content a").click(function(){
		jQuery("#aromatise_content").hide();
		jQuery("#nature a").hide();
		jQuery("#nature_content").show();
		jQuery("#aromatise").hide();
		return false;	
	});	
	
	jQuery("#switch_text li a").click(function(){
		jQuery("#switch_text li").removeClass('selected');
		jQuery(this).parent().addClass('selected');		
		return false;
	});	
	
	jQuery(".vertus_sante #switch_text li a").click(function(){
		jQuery(".vertus_sante .text div").removeClass('toggled');
		jQuery(".vertus_sante .text div#"+ jQuery(this).attr('class')).addClass('toggled');
		return false;
	});	

});

