// JavaScript Document
  // test auto-ready logic - call corner before DOM is ready
    $('#readyTest').corner();
    
    $(function(){
		
	
        $('div.inner').wrap('<div class="outer"></div>');
        $('p').wrap("<code></code>");
		$('div.inner').parent().css('padding', '3px').corner("round 9px")

        $('div.demo, div.inner').each(function() {
            var t = $('p', this).text();
            eval(t);
        });

        // fixed/fluid tests
        $("div.inner, div.imgWrap, div.cornerFrame, div.overLay, #subBlock, div.block-2, div#cover").corner("round 9px");
	
	$("div.info").corner("round 8px");
	$("td.smallCorner, .contactSubmit, #downLoadEmail, #email,  #totalBox").corner("round 5px");
	

    });
