// $Id: common.js 6 2009-12-03 17:02:56Z Ian.H $

$(function() {
    // Header images
    $('ul#image-fader').innerfade({
        speed: 3000,
        timeout: 10000,
        type: 'sequence',
        containerheight: '440px',
        longfirstdelay: false,
        longdelaytime: 1.5
    });

    // Front page video
    if ($('div.video-container').length > 0) {
        $('div.video-container').html('');
        $('div.video-container').flash({
            src:    'video.swf',
            width:  240,
            height: 160,
            allowfullscreen: true,
            wmode: 'transparent'
        });
    }

    // Gallery
    $('ul#gallery-fader').innerfade({
        speed: 3000,
        timeout: 5000,
        type: 'sequence',
        containerheight: '600px',
        longfirstdelay: false,
        longdelaytime: 1.5
    });
    
    // Contact us form
    $('#btn-send').click(function() {
        frmValidateContactUs();
    });
});