jQuery(document).ready(function($) {

    $('#shipping, #sidebar h2, #shopbybrand, #sidebar .box, #sidebar ul li:last, #shopping_cart, #featured_brands_link, #on_sale, #on_sale .icon, #whats_new, #featured, #connect_bar, #main_ad a, #main_ad a span, #side_ad a, .products h2').corner("4px");
    $('#sidebar li.special a, #news_box a.alignright').corner('bevel 20px tl').corner('4px br');
    $("#bestsellers a.tab").corner('3px top');    
    
    //bestsellers script
    $("#bestsellers a.tab:first").addClass('active');
    bestsellers_content = $("#bestsellers .row.hidden:first").html();
    $("#bestsellers .row:first").html(bestsellers_content);
    $("#bestsellers a.tab").click(function () 
    { 
      $("#bestsellers a.tab.active").removeClass('active');
      $(this).addClass('active');
      aaa = $(this).attr('href');
      bbb = $("#bestsellers #"+aaa).html();
      $("#bestsellers .row:first").html(bbb);
      return false;
      
    });

});
