 $(document).ready(function(){

 	// used for forms to replace the text if user clicks back out of the input field
    $('.blink').
        focus(function() {
            if(this.title==this.value) {
                this.value = '';
            }
        }).
        blur(function(){
            if(this.value=='') {
                this.value = this.title;
            }
        });
});



