window.onload = init;

function init(){
	mainBody = document.getElementById("aiga_isk");

	// check if it exists.  by default this JS file is brought into the calendar frame where
	// this id does not exist
	if(mainBody){
		// Create div to hold flash movie
		flashMovie = document.createElement('div');
		var tempText = document.createTextNode(" ");

		flashMovie.appendChild(tempText);

		flashMovie.setAttribute("id","aigaLogoFlashMovie");
		//flashMovie.className = "aigaLogoFlashMovie";

		mainBody.appendChild(flashMovie);
		
		var so = new SWFObject("/aiga_logo.swf", "mymovie", "225", "125","8", "", true);
		so.write("aigaLogoFlashMovie");
	}
}