$(document).ready(function(){
    var elements = $(".videoContainer");
    for (var i = 0; i < elements.length; i++) {
        var theURL = $(elements[i]).children(":first").text();
        var theImage = $(elements[i]).children().eq(1).text();
        if(theImage == '/videos/') theImage = '';
        $(elements[i]).flash(
             {
                 src: '/scripts/player.swf',
                 allowFullScreen: 'true',
                 wmode: 'transparent',
                 flashvars: { file: theURL, image: theImage }
             },
             { version: 9 }
        );
    }
});
