function isReady() {  return true; }
function stopBackground() { thisMovie("background").stopBackground(); }
function startBackground() { thisMovie("background").startBackground();	}
function whatPage(thePage) { thisMovie("background").isPage(thePage); }
function thisMovie(movieName) {
 if (navigator.appName.indexOf("Microsoft") != -1) {
	 return window[movieName];
 } else {
	 return document[movieName];
 }
}
$(document).ready(function() { 
						   $(".mainMenu a").click(function(event) { stopBackground(); });
						   });