/**
 * Insert flash video on homepage
 */

/*
Activate flash movie
*/

var TraxxIntro = {

  init: function()
  {
    var link = $('<a href="#" class="flash-vid">See for yourself &rsaquo;</a>').click(TraxxIntro.play);
    $('#banner').append(link);
  },

  play: function()
  {
    $('#banner').empty().flash(
        {
        src: 'flash/movie.swf',
        width: 750,
        height: 265
        },
        { update: false }
    );
  }

}
$(document).ready(TraxxIntro.init);
