      var SokShortDelayMS = 300;
      var SokLongDelayMS = 1000;
      var SokShortDelayS = 0.3;
      var SokLongDelayS = 1.0;

	function sfx_DelayIfExists(id, delay)
	{	
		if (document.getElementById(id)) {
 			mydelay = delay;
		} else {
			mydelay = 0;
		};
		return mydelay;
	};

   function sfx_OnloadFX ()
	{
		if (document.getElementById('lower_pane3')) $('lower_pane3').appear ({duration: SokShortDelayS});
		setTimeout(function lowerPane2 () {
				if (document.getElementById('lower_pane2')) $('lower_pane2').appear ({duration: SokShortDelayS});
		setTimeout(function lowerPane1 () {
				if (document.getElementById('lower_pane1')) $('lower_pane1').appear ({duration: SokShortDelayS});
		setTimeout(function myPane9 () {
				if (document.getElementById('pane9')) $('pane9').appear ({duration: SokShortDelayS});
		setTimeout(function myPane8 () {
				if (document.getElementById('pane8')) $('pane8').appear ({duration: SokShortDelayS});
		setTimeout(function myPane7 () {
				if (document.getElementById('pane7')) $('pane7').appear ({duration: SokShortDelayS});
		setTimeout(function myPane6 () {
				if (document.getElementById('pane6')) $('pane6').appear ({duration: SokShortDelayS});
		setTimeout(function myPane5 () {
				if (document.getElementById('pane5')) $('pane5').appear ({duration: SokShortDelayS});
		setTimeout(function myPane4 () {
				if (document.getElementById('pane4')) $('pane4').appear ({duration: SokShortDelayS});
		setTimeout(function myPane3 () {
				if (document.getElementById('pane3')) $('pane3').appear ({duration: SokShortDelayS});
		setTimeout(function myPane2 () {
				if (document.getElementById('pane2')) $('pane2').appear ({duration: SokShortDelayS});
		setTimeout(function myPane1 () {
				if (document.getElementById('pane1')) $('pane1').appear ({duration: SokShortDelayS});
		setTimeout(function upperPane3 () {
				if (document.getElementById('upper_pane3')) $('upper_pane3').appear ({duration: SokLongDelayS});
		setTimeout(function upperPane2 () {
				if (document.getElementById('upper_pane2')) $('upper_pane2').appear ({duration: SokLongDelayS});
		setTimeout(function upperPane1 () {
				if (document.getElementById('upper_pane1')) $('upper_pane1').appear ({duration: SokLongDelayS});
				}
				 , sfx_DelayIfExists ('upper_pane1',SokShortDelayMS)); 
				}
				 , sfx_DelayIfExists ('upper_pane2',SokShortDelayMS)); 
				}
				 , sfx_DelayIfExists ('upper_pane3',SokShortDelayMS)); 
				}
				 , sfx_DelayIfExists ('pane1',SokShortDelayMS)); 
				}
				 , sfx_DelayIfExists ('pane2',SokShortDelayMS)); 
				}
				 , sfx_DelayIfExists ('pane3',SokShortDelayMS)); 
				}
				 , sfx_DelayIfExists ('pane4',SokShortDelayMS)); 
				}
				 , sfx_DelayIfExists ('pane5',SokShortDelayMS)); 
				}
				 , sfx_DelayIfExists ('pane6',SokShortDelayMS)); 
				}
				 , sfx_DelayIfExists ('pane7',SokShortDelayMS)); 
				}
				 , sfx_DelayIfExists ('pane8',SokShortDelayMS)); 
				}
				 , sfx_DelayIfExists ('pane9',SokShortDelayMS)); 
				}
				 , sfx_DelayIfExists ('lower_pane3',SokShortDelayMS)); 
				}
				 , sfx_DelayIfExists ('lower_pane2',SokShortDelayMS)); 

		return false;
	};



