var mushroom = {

	init : function() {
		this.redirect();
		this.embedflash();
	},
	
	embedflash : function () {
		if ($('#flashmovie').length === 0) { return; }
		$('#page').hide();
		var vars = {
		};
		var params = {
			menu: "false",
			scale: "noscale",
			wmode: "transparent",
			allowfullscreen: "true"
		};
		var attributes = {
			id: "flash",
			name: "flash"
		};
		swfobject.embedSWF("mushroom_bureau.swf", "flashmovie", "100%", "720", "9.0.0", "inc/expressInstall.swf", vars, params, attributes);
		swfmacmousewheel.registerObject(attributes.id);	
	},
	
	redirect : function(){
		if ($('#flashbtn-container a').length === 0) { return; }
		window.location = $('#flashbtn-container a').attr("href")
	}
	
};

$(document).ready(function() {
	mushroom.init();
});