// JavaScript Document

$(function(){
	
	$('#box a, #box2 a, #box2_ a, #box3, box4, div.inner, div.plain2').wrap('<div class="outer"></div>');
	$('#box a, #box2 a, #box2_ a, #box3, box4, div.inner, div.plain2').each(function() {
		var t = $(this).corner('round 8px').parent().css('padding', '2px').corner('round 10px');
		eval(t);
	});
	
	$("div.box, div.box2, span.box3, #box a, #box2 a, #box2_ a, #box3, box4").corner();
	
	// fixed/fluid tests
	$("div.box, div.plain").corner();
	$("#abs").corner("cc:#08e");
	
	$('.myCorner').corner();
});
