﻿$(function () {
    $('#background').css('height', $('#background').height() + 'px');

    $('#background')
        .hide();
    var text = $('#reveal').text();
    $('#reveal')
        .text('')
        .append(
            $('<a href="#"></a>')
                .text(text)
                .unbind('click')
                .click(function() {
                    $('#background').slideToggle(500);
                    return false;
                })
        );
});
