﻿//clear textbox when on focused || 2008-05-04 by zelus
$(document).ready(function(){
    var temp = '';
    $("input[@type=text], textarea").each(function(){
        $(this).focus(function(){ 
            if ($(this).val() == 'Name' || $(this).val() == 'E-mail' || $(this).val() == 'Message') {
                temp = $(this).val(); $(this).val(''); }
        });
        $(this).blur(function(){ if ($(this).val() == '') { $(this).val(temp); } });
    });
});


