/*
var slide_arial = function() {
    var myFx = new Fx.Tween($('arial'), {duration:1500});
    myFx.start('width', '344px')
}
var slide_map = function() {
    var myFx = new Fx.Tween($('map'), {duration:2000});
    myFx.start('width', '513px')
}
*/
var slide_grey_stripe = function() {
    var myFx = new Fx.Tween($('grey_stripe'), {duration:2000});
    myFx.start('width', '207px')
}
var fade_text_one = function() {
    var el = $('text_one');
    $(el).set('styles', {'marginLeft': '0px'});
    el.set('opacity', 0);
    el.fade(.99);
}
var fade_text_two = function() {
    var el = $('text_two');
    $(el).set('styles', {'marginLeft': '0px'});
    el.set('opacity', 0);
    el.fade(.99);
}
var fade_text_three = function() {
    var el = $('text_three');
    $(el).set('styles', {'marginLeft': '0px'});
    el.set('opacity', 0);
    el.fade(.99);
}



var tl = new timeline();
tl.interval = 200;
tl.add(1, slide_grey_stripe);
tl.add(11, fade_text_one);
tl.add(14, fade_text_two);
tl.add(17, fade_text_three);

$(window).addEvent('load', function(){tl.run();});
