	$(document).ready(function(){
		if (!$.browser.safari && !$.browser.webkit)
		{
        $('div.cornersTop').each(function() {
             $(this).corner("top");
        });
        $('div.cornersBottom').each(function() {
             $(this).corner("bottom");
        });
        $('div.corners').each(function() {
             $(this).corner();
        });
        $('div.cornersSmall').each(function() {
             $(this).corner("5px");
        });
        $('div.cornersLeft').each(function() {
             $(this).corner("tl bl");
        });
		}
	});
