jQuery(document).ready(function() {
    jQuery('#tarifs').jcarousel({scroll:1});
    
    jQuery('.detailed a').click(function(){
        //if(this.prev('detail').)
        $(this).parent().prev('.detail').slideDown(); 
        $(this).remove();
        return false;    
    });
});

function Show(divId)
{
    if(document.getElementById(divId).style.display == 'none')
        document.getElementById(divId).style.display='block';
    else
        document.getElementById(divId).style.display = 'none';
}
