
	$(function() 	// shorthand for $(document).ready() BTW
	{
        $('div.roundcornerbox').each(function() 
        {
			// The text of the paragraphs in the rounded divs is also the
			// jQuery code needed to create that effect. Cosmic.
             //eval($('p', this).text());
        	$(this).corner();
        });
        
        //$('#main p').wrap("<code></code>");
	});

