
$(document).ready(function(){
    $('ul.sf-menu ul.first').each(function(i){
        var min = $(this).parent('li').width();
        if ($(this).width() <= min) {
            $(this).width(min);
        }
    });

    /*
    $('ul.sf-menu').superfish({
        animation: {opacity: 'show', height: 'show'},
        delay: 0,
        speed: 50,
        autoArrows: false,
        dropShadows: true
    });
    */

    $('a.cbox').attr('rel', 'cbox');
    $('a[rel="cbox"]').colorbox();
});

