/***********************************************************************
  Load
***********************************************************************/

jQuery(document).ready(function()
{
    showPlayer();
});

/***********************************************************************
  Player
***********************************************************************/

function showPlayer()
{
    var i = 0, id, player, config, data, html;
    jQuery('a.player').each(function()
    {
        if (jQuery(this).attr('href') && jQuery(this).attr('rel')) {
            i++;
            id      = 'player_' + i;
            player  = jQuery(this).attr('href');
            config  = jQuery(this).attr('rel');
            data = (jQuery.browser.msie) ? '' : ' data="' + player + '"';
            html =  '<object id="' + id + '" type="application/x-shockwave-flash" width="100%" height="100%"' + data + '>' +
                       '<param name="movie" value="' + player + '" />' +
                       '<param name="vmode" value="transparent" />' +
                       '<param name="allowscriptaccess" value="always" />' +
                       '<param name="allownetworking" value="all" />' +
                       '<param name="flashvars" value="' + 'config=' + config + '" />' +
                    '</object>';

            jQuery(this).html(html);
        }
    });
}
