﻿
function PublicHome()
{
    this._baseUrl = '/Default.aspx/';

    BaseObject.prototype.Init.call(this);

    var handle = this;

    $('#tagline').find('a[rel]').overlay();

    this.Bind();
}

PublicHome.prototype = new BaseObject();
PublicHome.prototype.constructor = PublicHome;



function fnScriptFileInitialize()
{
    $('#signinform').find('input[type="text"],input[type="password"]').bind('keydown',
        function(event)
        {
            if (event.keyCode == 13)
            {
                eval($('#signinform').find('.button').attr('href'));
                return false;
            }
        });
}

PublicHome.prototype.Bind = function()
{
    var handle = this;
}

var _e;