$(document).ready(function(){
	
    $("a.player").each(function(i) {
	     $(this).flashembed( 
			{ 
				src:"player.swf",
				allowfullscreen: true, 
				w3c:true
			} , 
			{
				flv: $(this).attr('href'), 
				bufferTime:2
			} 
		);
		$(this).attr('href', '#');
	});

  });