/**
 * JQuery Plugin to ....
 */
(function($) {
	
	$.fn.insideLabel = function() {
		$(this).focusin(function() {
			if ($(this).val() == $(this).attr('title')) {
				$(this).val('');
			}
		});
		$(this).focusout(function() {
			if ($(this).val() == '') {
				$(this).val($(this).attr('title'));
				$(this).removeClass('filled');
			} else {
				$(this).addClass('filled');
			}
		});		
	};	
	
})(jQuery);
