/**
 * aka void main()
 */
$(function() {

    Ocean5.initAjax();

    Ocean5.Basket.init();

    Ocean5.Gallery();

    $('.products .pr-cat a').click(function() {
        var $ul = $(this).parent().children('ul');
        if ($ul.length) {
            $ul.slideToggle(100);
            return false;
        }
    });

});

