//######### the cornering ##########
$(function() {	// shorthand for $(document).ready() BTW
 /*
        $('div.showhide,search').hide();   // this is to hide the search

        $('div.odd').each(function() {
			// The text of the paragraphs in the rounded divs is also the
			// jQuery code needed to create that effect. Cosmic.
             eval($('span', this).text());
        });
        $('#odd span').wrap("<code></code>");

        $('div.even').each(function() {
			// The text of the paragraphs in the rounded divs is also the
			// jQuery code needed to create that effect. Cosmic.
             eval($('span', this).text());
        });
        $('#even span').wrap("<code></code>");


        $('div.footer').each(function() {
			// The text of the paragraphs in the rounded divs is also the
			// jQuery code needed to create that effect. Cosmic.
             eval($('span', this).text());
        });
        $('#footer span').wrap("<code></code>");

        $('div.roundc').each(function() {
			// The text of the paragraphs in the rounded divs is also the
			// jQuery code needed to create that effect. Cosmic.
             eval($('span', this).text());
        });
        $('#roundc span').wrap("<code></code>");

        $('div.roundt').each(function() {
			// The text of the paragraphs in the rounded divs is also the
			// jQuery code needed to create that effect. Cosmic.
             eval($('span', this).text());
        });
        $('#roundt span').wrap("<code></code>");

        $('div.roundi').each(function() {
			// The text of the paragraphs in the rounded divs is also the
			// jQuery code needed to create that effect. Cosmic.
             eval($('span', this).text());
        });
        $('#roundi span').wrap("<code></code>");

        $('div.roundm').each(function() {
			// The text of the paragraphs in the rounded divs is also the
			// jQuery code needed to create that effect. Cosmic.
             eval($('span', this).text());
        });
        $('#roundm span').wrap("<code></code>");

        $('div.container').each(function() {
			// The text of the paragraphs in the rounded divs is also the
			// jQuery code needed to create that effect. Cosmic.
             eval($('span', this).text());
        });
        $('#container span').wrap("<code></code>");

        $('div.staffprofileA').each(function() {
			// The text of the paragraphs in the rounded divs is also the
			// jQuery code needed to create that effect. Cosmic.
             eval($('span', this).text());
        });
        $('#staffprofileA span').wrap("<code></code>");

        $("img.dropshadow").wrap("<div class='wrap1'><div class='wrap2'><div class='wrap3'>" + "</div></div></div>");
        $("img.dropshadowr").wrap("<div class='wrap1r'><div class='wrap2'><div class='wrap3'>" + "</div></div></div>");

        //this one toggles the show hide of the search
        $('#togglesearch').click( function() {
        $('div.showhide,search').toggle();
        //put the background of the element to fade from yellow?

        });

*/
});
