
jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
        scroll:1
    });
});

function survole(id, nbr){
	
	for (i=1; i <= nbr; i++)
	{	
	document.getElementById('c'+i).style.display = "none";
	}
		
	document.getElementById(id).style.display = "block";
}