// JavaScript Document

function wrapFish() 
{
	var catfish = document.getElementById('catfish');
	var subelements = [];
	
    for (var i = 0; i < document.body.childNodes.length; i++) 
    {
 	  subelements[i] = document.body.childNodes[i];
	}

	var zip = document.createElement('div');    // Create the outer-most div (zip)
	zip.id = 'zip';                             // call it zip
    zip.style.width = '920px';                  // set its width abundantly larger.

	for (var i = 0; i < subelements.length; i++) 
    {
	  zip.appendChild(subelements[i]); 
	}

	document.body.appendChild(zip);             // add the major div
	document.body.appendChild(catfish);         // add the catfish after the zip
}

if (window.attachEvent) window.attachEvent("onload", wrapFish);
