
    $(document).ready(function(){
		Cufon.replace("h2");
		Cufon.replace(".tm");
		
        // first set up form values on page load
		$('#zoekveld').val('Typ een zoekterm of vraag');
        $('#textfield').val('Naam');
        $('#textfield2').val('Email');
                                
        // on click of id="firstName", clear the field
        $('#textfield').click(function(){
            $(this).focus().val('');
        });
		$('#zoekveld').click(function(){
            $(this).focus().val('');
        });
            
                                
        // on click of id="lastName", clear the field
        $('#textfield2').click(function(){
            $(this).focus().val('');
        });
                                
        //if you want to re-populate the field 
        //if it's empty after clearing, do this
        $('#textfield').blur(function(){
            if($('#textfield').val() == ''){
                $('#textfield').val('Naam');
            }
        });
                                
        $('#textfield2').blur(function(){
            if($('#textfield2').val() == ''){
                $('#textfield2').val('Email');
            }
        });
    });


