// Set-up

$(document).ready(function() {
var i = 'studio';
var j = 'monolith-nyc.com';
var k = i + '@' + j;
$('p#email-address').append('<a href="mai' + 'lto:' + k + '">' + k + '</a>');
$('#container').animate({opacity: 0.0}, 0)
.show()
.animate({opacity: 1.0}, {duration: 1000, easing: 'jswing', complete:function() {
if ($.browser.msie) {
this.style.removeAttribute('filter');
}
}
});
});

function clearText(i) {
if (i.value == 'Email address') {
$(i).css({color: '#000'});
i.value = '';
}
}

function insertValue(i) {
if (i.value == '') {
$(i).css({color: '#CCC'});
i.value = 'Email address';
}
}
