Cufon.replace('h1, h2, h3', {hover:true});
Cufon.replace('#quote', {
				textShadow: '0 1px rgba(0,0,0,0.2)'
			});


$(document).ready(function() {
    $('p input,textarea').each(function() {
        
        var label = $(this).siblings('label').text();
        
        if($(this).val() === '') {
            
            $(this).val(label);
            $(this).siblings('label').css('display', 'none');
            
        }

        $(this).focus(function() {
            if($(this).val() === label) {
                $(this).val('');
            }
        });

        $(this).blur(function() {
            if($(this).val() === '') {
                $(this).val(label);
            }
        });
    });
});
