$(document).ready(function(){

	$('a[href^="http://www.youtube.com/v/"]').flash(
        { allowfullscreen: true, width: 373, height: 256 },
        { version: 8 },
        function(htmlOptions) {
            $this = $(this);
            htmlOptions.src = $this.attr('href');
            $this.before($.fn.flash.transform(htmlOptions));						
        }
    );

	$('a[href^="http://www.dailymotion.com/swf"]').flash(
        { allowfullscreen: true, width: 373, height: 256 },
        { version: 8 },
        function(htmlOptions) {
            $this = $(this);
            htmlOptions.src = $this.attr('href');
            $this.before($.fn.flash.transform(htmlOptions));						
        }
    );

});


