var ebag = ebag || {};

ebag.init = function()
{
  if ($('body').is('.front')) {
    var text = $('#presentation p').html().replace(/strong/g, 'b');
    var flashvars = {video:'/video/presentation.flv', text:text};
    var params = {wmode: 'transparent'};
    var attributes = {};
    swfobject.embedSWF('/swf/presentation.swf', 'presentation', '716', '412', '9.0.0', false, flashvars, params, attributes);
  }
};

/**
 * On document ready.
 */
$(document).ready(ebag.init);
