	function thisMovie(movieName) {
		if (navigator.appName.indexOf("Microsoft") != -1) {
			return window[movieName];
		} else {
			return document[movieName];
		}
	}

	function sendToActionScript(value) {
		thisMovie("library_embedness").sendToActionScript(value);
	}

	$(document).ready(function(){

			function createLibraryPlaya(mah_div, mah_width, mah_height){
				var so = new SWFObject("/resources/swf/home.swf", "library_embedness", mah_width, mah_height, '9');
				so.addParam("wmode","transparent");
				so.addParam("AllowScriptAccess", "always");
				so.addParam("AllowFullScreen", "true");
				so.addVariable("xml","/resources/random/front_covers.xml");
				so.write(mah_div);
			}

			createLibraryPlaya('swf_library', 706, 273);

			$('#lib_highest_rated').click(function(){
					sendToActionScript("/resources/toprated/front_covers.xml");
			});
	});
