// Corner Rounder

jQuery(function(){
	jQuery('.round').corner('round 5px');
	jQuery('.round_left').corner('tl bl 5px');
	jQuery('.round_right').corner('tr br 5px');
	jQuery('.round_top').corner('tr tl 5px');
	jQuery('.round_bottom').corner('bl br 5px');
	jQuery('.round_line').corner('round 5px').parent().css('padding', '2px').corner("round 7px");
	jQuery('.round_left_top').corner('tl 5px');
});

