/* 
	Copyright 29/06/11 Jake Nicholson (www.eskdale.net)
	Checks support for border-radius (no vendor prefixes), CSS offers an image-based solution if not supported (or will when/if I get round to it...)
*/
(function(supportTHIS){$.fn.supportTHIS=function(){if($(this).css('border-radius')===undefined){$(this).addClass('nbr');}else{$('.roundTop').remove();$('.roundBottom').remove();};};})(jQuery);
