$(document).ready(function(){
    $(".flow").each(function(){
	$(this).attr("href", "/" + $(this).attr("href"));
	var id = $(this).attr("id");
	flowplayer(id, "flowplayer-3.2.4.swf", {
	    clip:  { autoPlay: false, autoBuffering: true, provider: 'pseudo' },
	    plugins: { pseudo: {url: 'flowplayer.pseudostreaming-3.2.4.swf'} }
	});
    });
    $(".audio").each(function(){
	$(this).attr("href", "/" + $(this).attr("href"));
	var id = $(this).attr("id");
	flowplayer(id, "flowplayer-3.2.4.swf", {
	    clip:  { autoPlay: false, autoBuffering: true, provider: 'pseudo' },
	    plugins: {
		pseudo: {url: 'flowplayer.pseudostreaming-3.2.4.swf'},
		controls: {
			fullscreen: false,
			autoHide: {
			    fullsccreenOnly: false,
			    hideDelay: 2000
			}
		}
	    }
	});
    });
});



