$(document).ready( function() {
if (flashembed.isSupported([10,0])) $("div.flash").each( function () {
    var $f=$(this);
    var $fi=$(".flashin",this);

//    alert($t.attr("swf"));

    var _w=$f.attr("swfw");
    var _h=$f.attr("swfh");
    if (_w) $fi.width(_w);
    if (_h) $fi.height(_h);
    
    $fi.flashembed(
        {
	    allowfullscreen: false,
	    allowscriptaccess: false,
	    src: $f.attr("swf"),
//	    bgcolor: "#A3140D",
	    wmode: "opaque"
	    }
	);

});


});

