// Welcome! The shake function is a small javascript culled from another Internet site (www.popsmear.com).
// If you experienced it, you should understand the nature of the technology you are using.

function shake(n) {
if (parent.moveBy) {
for (i = 10; i > 0; i--) {
for (j = n; j > 0; j--) {
parent.moveBy(0,i);
parent.moveBy(i,0);
parent.moveBy(0,-i);
parent.moveBy(-i,0);
         }
      }
   }
}
// End -->
