
$(document).ready(function() {
$("a[href$='.mp3']").click(function() {
		if ( $("#flvply").length > 0 ) { 
		 $("#flvply").remove();
		}
        $(this).after("<div id='flvply'>" + this.href + "</div>");
	    var flashvars = {
            file: this.href
            , title:"[Title]"
            , type: "sound"
            , allowscriptaccess:"always"
            , allowfullscreen:"true"
        };
	    swfobject.embedSWF("portaldata/1/js/flashplayer/player.swf", "flvply", "500", "20", "9.0.0", "portaldata/1/js/flashplayer/expressInstall.swf", flashvars, "bgcolor:#ffffff");	
		return false;
	});
$("a[href$='.flv']").click(function() {

		if ( $("#flvply").length > 0 ) { 
		 $("#flvply").remove();
		}
        $(this).after("<div id='flvply' class='clear'>" + this.href + "</div>");
	    var flashvars = {
            file: this.href
            , title:"[Title]"
            , type: "video"
            , allowscriptaccess:"always"
            , allowfullscreen:"true"
        };
	    swfobject.embedSWF("portaldata/1/js/flashplayer/player.swf", "flvply", "500", "450", "9.0.0", "portaldata/1/js/flashplayer/expressInstall.swf", flashvars, "bgcolor:#ffffff");	
		return false;
	});
});
