$(document).ready(function(){
	// Add rounded corners for non-safari/mozilla browsers that
	//  can't handle the CSS property
	if(!$.browser.safari && !$.browser.mozilla) {
        $('.text').corner('20px');
        $('#container').corner('20px');
	}
});

