En reprenant ce que grafiArt à fait, j'ai fait ça :
jQuery(function($){
var date = new Date();
var currentMonth = date.getMonth()+1;
$('.month').hide();
$('#tabMonth'+currentMonth).show();
$('.listMonths a#linkMonths'+currentMonth).css("color","red");
$('.listMonths a').click(function(){
var month = $(this).attr('id').replace('linkMonths', '');
if(month!=currentMonth)
{
$('#tabMonth'+currentMonth).slideUp(),
$('#tabMonth'+month).slideDown();
$('.listMonths a#linkMonths'+currentMonth).css("color","black");
$('.listMonths a#linkMonths'+month).css("color","red");
currentMonth = month;
}
return false;
});
}
);
J'ai pas changé grand chose mis à part le début, qui t'affichera le mois courrant comme tu le souhaite