$ = jQuery.noConflict();
$(document).ready(function() {
    var fieldDefaults = new Array();
    $('input.mailchimp').each(function(e) {
        fieldDefaults[$(this).attr('name')] = $(this).val();
        $(this).addClass('grey');
    });
                        
    // Remove text and grey on focus
    $('input.mailchimp').focus(function(e) {
        if ($(this).val() == 'Email Address' || $(this).val() == 'First Name' || $(this).val() == 'Last Name') {
            $(this).val('');
            $(this).removeClass('grey');
        }
    });    
                        
    // Restore text and grey on blur if empty
    $('input.mailchimp').blur(function(e) {
        if ($(this).val() == '') {
            $(this).addClass('grey');
            $(this).val(fieldDefaults[$(this).attr('name')]);
        }
    });    
});