
function replaceSWF(path, id, width, height){
	//clear out holder and make new inner div to replace...
	$('holder').innerHTML = "<div id='flashcontent'></div>";

	//now replace it
	var so = new SWFObject(path, id, width, height, "8", "#ffffff");
	so.write(id);
}
//crossfade
function swapFade(old_obj,new_obj){
	//alert('ok!');
	//Effect.Fade(old_obj, { duration:.2, from:1.0, to:0.0 });
	//Effect.Appear(new_obj, { duration:.2, from:0.0, to:1.0 });
	$(old_obj).hide();
	$(new_obj).show();
}
