$(function() {
    $('a.audio').click(function(){
        var so = new SWFObject("/media/flash/mp3_player_rev2.swf", "mp3_player", "180", "40");
        so.addParam("wmode", "transparent");
        so.addVariable("mp3file", "/media/audio/"+$(this).attr('href'));
        so.addVariable("title", $(this).text());
        so.addVariable("autoStart","true");
        so.write("audioPlayer");
        return false;
    });
    $('a.video').click(function(){
        //$('#video').html('<embed style="width:356px; height:263px;" allowfullscreen="true" type="application/x-shockwave-flash" src="http://video.google.com/a/impello.com/swf/'+$(this).attr('href')+'" flashvars="fs=true"> </embed>');
        var so = new SWFObject("/media/flash/video.swf", "movie", "356", "263");
        so.addVariable("videoPath", $(this).attr('href'));
        so.write("video");
        return false;
    });
});
$(document).ready(function(){
	var so = new SWFObject("/media/flash/video.swf", "movie", "356", "263");
	so.addVariable("videoPath", $('#watch a.video').attr('href'));
	so.write("video");
});	

