/* activate PNG fix  */

    $(document).ready(function(){ 
        $(document).pngFix(); 
    }); 

/* prepopulate form field  */


$('input[type="text"]').focus(function() {
  this.value = '';
});
$('input[type="text"]').blur(function() {
  if (this.value == '') this.value = (this.defaultValue ? this.defaultValue : '');
});
