//Fixes flash problems
function fixflash(containerID){
var flashContainer = document.getElementById(containerID);
var flashMovie = document.createElement("div");
flashMovie.innerHTML = flashContainer.innerHTML.replace(/</g, "<").replace(/>/g, ">");
flashContainer.parentNode.insertBefore(flashMovie, flashContainer);
flashContainer.parentNode.removeChild(flashContainer);
flashMovie.setAttribute("id",containerID);
}

//Place below in your between your header tags.

//<script language="javascript" src="fixflash.js"> Make sure to put the closing tag.

//Place in body tag onload="javascript:fixflash('slideshow');"

//Seperate flash with the following tags so you can leave the flash params original.
//<div style="height:size here; width:size here;" id="slideshow"></div>