/* Scripts for Atto Toggle, Version 1.xDerek Mah, January 2009Shows and hides the div containing the shoppe_vortex.swf to simulate the screen vortex.SWF's appear to play from the beginning each time their container divs are toggled from visibility:hidden and display:none to visibility:visible and display:block, so we will hide the div by shifting it 1000px vertically off the screen.The toggle actions are separate so we can put one div onscreen well ahead of taking the other div offscreen. This helps to reduce blinking on slower browsers. */function shoppe_vortex_show () {	document.getElementById('atto_shoppe_vortex').style.top="0px";}function shoppe_vortex_hide () {	document.getElementById('atto_shoppe_vortex').style.top="-1000px";}function shoppe_toggle_show () {	document.getElementById('atto_shoppe_toggle').style.top="580px";}function shoppe_toggle_hide () {	document.getElementById('atto_shoppe_toggle').style.top="-1000px";}