jQuery.fn.formbehaviour = function() {
	$(this).find('input').bind('focus', function () {
			if($(this).val() == $(this).attr('title')) {
				$(this).val('');
			}
	});
	$(this).find('input').bind('blur', function () {
			if($(this).val() == '') {
				$(this).val($(this).attr('title'));
			}									 
	});
};
