// site.js
// -------

function furtherOptions_Expand(section) {
    var fO = $(section + 'MenuFurther');
    
    new Effect.Parallel([
        new Effect.BlindDown(fO, {sync: true}),
        new Effect.Opacity($(section + 'Expander'), {sync: true, from: 1.0, to: 0.0})
    ], { duration: 0.5});    
}


function furtherOptions_Contract(section) {
    var fO = $(section + 'MenuFurther');
    
    new Effect.Parallel([
        new Effect.BlindUp(fO, {sync: true}),
        new Effect.Opacity($(section + 'Expander'), {sync: true, from: 0.0, to: 1.0})
    ], { duration: 0.5});
}