$(document).ready(function(){

    $(".clientBox").each(function(i){
        this.id = "#" + this.id;
    });

    $(".clientBox:not(:first)").hide();
    $(".clientBox").not(":first").hide();
	
	$("#listref a:first").addClass("current");
	
    $("#listref a").click(function() {
        var idClient = $(this).attr("href");
        $(".clientBox").hide();
	$("#listref a").removeClass();
        $("div[id='" + idClient + "']").fadeIn();
		$(this).addClass('current');
        return false;
    });    
//var nbClientBox = $("#EtPrima").eq();
			//alert(nbClientBox);
});
