// ============================================================ //
// Author:			TeeJay
// Date:			16-Oct-2002
// Description:
// This simple series of loops make the browser window 
// move aroud quite rapidly - giving a "shake" FX
// ============================================================ //

// ============================================================ //
// Copy the content below and put it into an empty html document
// ============================================================ //
<SCRIPT LANGUAGE="JavaScript1.2">
	if (parent.moveBy) {
		for (i = 15; i > 0; i--) {
			for (j = 5; j > 0; j--) {
				parent.moveBy(0,i);
				parent.moveBy(i,0);
				parent.moveBy(0,-i);
				parent.moveBy(-i,0);
			}
		}
	}
</script>


