﻿(function($) {
    $.fn.AddXbutton = function() {
		
		var xImg = '/images/design/x.gif';
		for (i=0; i < $(this).length; i++) {
			$(this).eq(i)
				.after(
					$('<a href="javascript:void(null);" tabindex="100500"><img width="15" height="10" src="' + xImg + '" /></a>')
					.css({'display': 'none', 'cursor': 'pointer', 'marginLeft': '-15px' })
					.click(function() {
						$($(this).prev()).val('').focus(); 
						$(this).fadeOut('fast');
					}))

			.keyup(function() {
				if ($(this).val().length > 0) {
					$(this).next().fadeIn('fast');
				} else {
					$(this).next().fadeOut('fast');
				}
			});
			
			if ($(this).eq(i).val()) $(this).eq(i).next().show();

		};
    };
})(jQuery);
