// JavaScript Document

$(function() {
    $('.awardslides').cycle({
        delay: 0,
        speed: 1000,
		timeout: 3000,
        before: onBefore,
		fx: 'fade'
    });
    
    function onBefore() {
        $('#title').html(this.alt);
    }
});

$(function() {
    $('.planningslides').cycle({
        delay: -800,
        speed: 1000,
		timeout: 3000,
        before: onBefore,
		fx: 'fade'
    });
    
    function onBefore() {
        $('#title').html(this.alt);
    }
});

$(function() {
    $('.architectureslides').cycle({
        delay: -400,
        speed: 1000,
		timeout: 3000,
        before: onBefore,
		fx: 'fade'
    });
    
    function onBefore() {
        $('#title').html(this.alt);
    }
});

$(function() {
    $('.technologyslides').cycle({
        delay: 0,
        speed: 1000,
		timeout: 3000,
        before: onBefore,
		fx: 'fade'
    });

    
    function onBefore() {
        $('#title').html(this.alt);
    }
});

$(function() {
    $('.eoslides').cycle({
        delay: 0,
        speed: 1000,
		timeout: 4000,
        before: onBefore,
		fx: 'fade'
    });

    
    function onBefore() {
        $('#title').html(this.alt);
    }
});
