function doVideo(videoUrl){
	$("#mediaArea").children('img').fadeOut(1000);
	$("#mediaArea").animate({ height: 240 }, 1000);
	setTimeout(function(){ embedVideo(videoUrl); }, 1000);
}

function embedVideo(videoUrl){
	var so = new SWFObject('http://www.divisionpromotions.com/test/flash/player.swf','mpl','320','240','7');
	so.addParam('allowfullscreen','false');
	so.addVariable('displayheight','240');
	so.addVariable('file',videoUrl);
	so.addVariable('height','240');
	so.addVariable('width','320');
	so.addVariable('autostart','true');
	so.addVariable('usefullscreen','false');
	so.write('mediaArea');
}
