jQuery( function($) {
    $('form').submit( function(e) {
        //e.preventDefault();
    });
    
    $('.traveller-type input').click( function() {
        var q = $(this);
        $(".description.current").fadeOut(300, function(){
            $(this).html( $('.description.'+q.val()).html() ).fadeIn(300);
        });
    }).filter(':checked').click();
});
