$(document).ready(function(){
    /*
     * Enable the fancy in-field labels
     */
    $('input[type="text"], textarea').blur(function(){
        if (jQuery.trim($(this).attr('value')) == '') {
            $(this).attr('value', $(this).prev().text());
            $(this).css('color', '#447CAB');
            $(this).focus(function(){
                $(this).attr('value', '');
                $(this).css('color', '#447CAB');
            });
        } else  {
            $(this).unbind('focus');
        }
    });
    $('input[type="text"], textarea').each(function(){
        $(this).blur();
    });



});

