$(document).ready(
	function()
	{
	    $('a[href$="flv"]').flash(
	        { src: '/plugins/jquery-flash/player.swf', height: 385, width: 640, allowfullscreen: true },
	        { version: 7 },
	        function(htmlOptions) {
	            $this = $(this);
	            
	            htmlOptions.flashvars.file = $this.attr('href');
	            $this.before($.fn.flash.transform(htmlOptions));
	            
	            $this.hide();						
	        }
	    );
	}
);