$(document).ready(function() {
    $('ul.sf-menu').superfish({
        delay:       100,
        animation:   {opacity:'show',height:'show'},
        speed:       'fast',
        autoArrows:  false,
        dropShadows: false
    });

    if($.browser.webkit) {
        $(".rndImg img").load(function() {
            $(this).wrap(function(){
                return '<div class="roundimg" style="background:url(' + $(this).attr('src') + ') no-repeat center center; width: ' + $(this).width() + 'px; height: ' + $(this).height() + 'px;"></div>';
            });
            $(this).css("opacity","0");
        });
    }
});

