jQuery.noConflict();
jQuery(document).ready(function($){
	$(".tab_content").each(function(e){
		this.id = "#" + this.id;
	});
	
	$(".tab_content").hide();
	
	$("a.lien_tab").click(function() {
        	var idTab = $(this).attr("href");
        	
        	/* By Cco */
        	var Cco_Id = idTab.split('#');
        	idTab = '#'+Cco_Id[1];
        	/*-- -- --*/
        	
        	$(".tab_content").hide();
        	$("div[id='" + idTab + "']").fadeIn();
        	return false;
    	});
});