$(document).ready(function () {
        $(".nav li").hover(function () {
        $('ul', this).css('display', 'block');
    }, function () {
        $('ul', this).css('display', 'none');
    });

	//forms
	 $('input[type="text"]').focus(function() {  
         if (this.value == this.defaultValue){  
             this.value = '';  
         }  
     });  
	 $('textarea').focus(function() {  
         if (this.value == this.defaultValue){  
             this.value = '';  
         }
     }); 
     $('input[type="text"]').blur(function() {  
         if (this.value == ''){  
             this.value = (this.defaultValue ? this.defaultValue : '');  
         }  
     }); 
	 $('textarea').blur(function() {  
         if (this.value == ''){  
             this.value = (this.defaultValue ? this.defaultValue : '');  
         }  
     }); 
});
