$(function(){	$(document).pngFix( );	});$(document).ready(function(){    $('input[type="text"]').focus(function() {        $(this).css('color', '#fff');        if (this.value == this.defaultValue) this.value = '';    });    $('input[type="text"]').blur(function() {        if (this.value == '') this.value = (this.defaultValue ? this.defaultValue : '');    });});