jQuery.fn.extend({

	swapInputVal :
		
		function(){

			
			var thisValue = $(this).attr("value");
			$(this).attr("title" , thisValue );
			var thisTitle =  $(this).attr("title");
			
			
			$(this).focus(
				function() {
					
					if ( $(this).attr("value") == thisTitle ) {
						
						$(this).attr("value" , "");
						this.style.color = "#000"
							
					} else {
						
					return false
					
					}
					
				}
				
			);
			

		$(this).blur(
			function() {
				
				if ( $(this).attr("value") == "") {
					
					$(this).val(thisTitle);
					this.style.color = "#919191 "

				}

			}
		);

	}
		

});
