$(document).ready(function() {
	
	$('.carousel-wrap').after('<div id="pager">').cycle({
			fx: 'fade',
			speed:  'slow' 
	});
	
	$("table tr:odd").addClass("trColor");
	$("table tr:first-child").addClass("trFirstColor");
	
});

function start(jour)
{

var nbm = [ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ];

MD=new Date();

nday=MD.getDate();
aday=MD.getDay();
amois=MD.getMonth();
ayear=MD.getFullYear();


nday += jour;

if(nday > nbm[amois])
{   		
	nday -= nbm[amois]; 
	amois++;  
	if(amois > 11) { ayear++; amois = 0; } }
	
document.MonFormulaire.jour.selectedIndex = nday-1;
document.MonFormulaire.mois.selectedIndex = amois;
document.MonFormulaire.annee.selectedIndex = 0;

}

