var OMNICOLOUR;
$(document).ready(function() {
    OMNICOLOUR = new Omnicolour();
    OMNICOLOUR.initialize();
});

function Omnicolour() {
}

Omnicolour.prototype = {
    initialize: function() {
        $('.menu li').each(function() {
            if($(this).height() > 18) {
                $(this).height(Math.ceil($(this).height()/18.0) * 18);
            }
        });

        if($('div#intro').length) {
            setTimeout(function() { $('div#intro').fadeOut('medium') }, 2500);
        }
    }
}

