$(function() {
    $(document).pngFix();

	$("input,textarea").focus(function () {
        if (($(this).attr('defText') != '') && ($(this).attr('defText') == $(this).val())) {
            $(this).val('');
        }
    });
	$("input,textarea").blur(function () {
        if (($(this).attr('defText') != '') && ($(this).val() == '')) {
            $(this).val($(this).attr('defText'));
        }
    });
	$("form").submit(function () {
        $("input,textarea").each(function (i) {
          if (($(this).attr('defText') != '') && ($(this).attr('defText') == $(this).val())) {
              $(this).val('');
          }
        });
    });
});
