var home = new function()
{
    this.init = function(e)
    {
        $('#header').css({position:'absolute'});
        $('#home').css('z-index', '100');
    };

    this.rand = function(from, to)
    {
        if (from == 0) {
            return Math.floor(Math.random() * to)
        }
        var lower = to - (from - 1);
        return Math.floor(Math.random() * lower) + from;

    };
}
$(function(){home.init();});

