/* Scripts for Atto Peelaway, Version 1.xDerek Mah, July, 2008Shows and hides the div containing the atto_peelaway.swf to allow links under the peelaway to remain clickable.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 atto_peelaway_show () {	document.getElementById('atto_peelaway').style.top="0px";}function atto_peelaway_hide () {	document.getElementById('atto_peelaway').style.top="-1000px";}function atto_peelaway_toggle_show () {	document.getElementById('atto_peelaway_toggle').style.top="0px";}function atto_peelaway_toggle_hide () {	document.getElementById('atto_peelaway_toggle').style.top="-1000px";}