/**
 * jQuery corner settings
 *
 * version 1.0 (2009-01-03)
 */

jQuery(document).ready(function() {
	jQuery('.round-10px').corner("10px");
	jQuery('.round-10px-nopad').corner("10px");
	jQuery('.round-top-10px').corner("10px tl tr");
	jQuery('.round-top-10px-nopad').corner("10px tl tr");
	jQuery('.round-bottom-10px').corner("10px bl br");
	jQuery('.round-bottom-10px-nopad').corner("10px bl br");
	jQuery('.round-topright-dog-10px').corner("10px tr dog");
	jQuery('.round-5px').corner("5px");
	jQuery('.round-5px-nopad').corner("5px");
	jQuery('.round-top-5px').corner("5px tl tr");
	jQuery('.round-top-5px-nopad').corner("5px tl tr");
	jQuery('.round-bottom-5px').corner("5px bl br");
	jQuery('.round-bottom-5px-nopad').corner("5px bl br");
	jQuery('.round-topright-dog-5px').corner("5px tr dog");
});