// JavaScript Document

$(document).ready(function() {
	
$("#quick-form input[type=text]").attr('value', function(){return this.title}).addClass('unfilled');
	$("#quick-form input[type=text]").focus(function() {
		if (this.value == this.title)
			$(this).val('').removeClass('unfilled');
	});
	$("#quick-form input[type=text]").blur(function() {
		if (this.value == '')
			$(this).attr('value', function(){return this.title}).addClass('unfilled');
	});

});
