// THIS IS FOR THE KEYWORDS ON THE PROFILE PAGE


			$(document).ready(function(){	
				//$("#duplicate").dynamicForm("#plus", "#minus", {limit:20,createColor: 'yellow',removeColor: 'red'});
				
				
				$("a.plus").live('click',function(){
				
					// how many keywords do we have?
					
					var cnt = $("#keywordlist").children("span").length;
					
					
					
					// Now lets add one to the list.
					
					var clone = $("#duplicate").clone();
					
					clone.removeAttr("id");
					
					
					$("#keywordlist").append(clone);
					
					clone.effect("highlight", {
						color: "yellow", mode:"show"
					}, 1000, function(){});
					
					$("#duplicate input").val("");
					
						return false;
				});
				
				
				$("a.minus").live('click',function(){
				
					var cnt = $("#keywordlist").children("span").length;
					
					
					if ($(this).closest("div").attr("id")=='duplicate') 
					{
						return false;
					}
					else {
						//$(this).closest("div.pkeys")
						
						$(this).closest("div.pkeys").effect("highlight", {
						color: "red", mode:"hide"
					}, 1000, function(){$(this).closest("div.pkeys").remove();});
					}
					
				return false;
				});
				
				
			});