// Define these rounded corners in the style sheet with:
// -webkit-border-radius, -moz-border-radius and border-radius
// Doing this will means that the rounded corners will show in
// all browser apart from IE even if javascript is disabled

$(document).ready(function() {
	if(IE7 == false) {
		$(".roundedSearch").corner("tl 10px").corner("tr 10px").corner("bl 10px").corner("br 10px");

		$(".remove").corner("tl 5px").corner("tr 5px").corner("bl 5px").corner("br 5px");

		$(".rounded").corner("bl 10px").corner("br 10px");

		$(".rounded2").corner("t1 10px").corner("bl 10px").corner("br 10px");
			
		$(".roundedSmall").corner("tl 5px").corner("tr 5px").corner("bl 5px").corner("br 5px");
	}
});
