﻿
// -------------------------------------------------------------------------| $(document).ready
$(document).ready(function()
{
    with($.theknot.uw.view.KNOT)
    {
        //RemovePoweredByLabel();
    }
});

// -------------------------------------------------------------------------| Namespace definitions.
$.theknot.uw.view.KNOT = function(){};

// -------------------------------------------------------------------------| Body
$.extend($.theknot.uw.view.KNOT,
{
    RemovePoweredByLabel: function()
    {
        $('div#poweredbytop').remove();
    }
});
