jQuery.fn.searchField=function(mark){return this.each(function(){var mark=mark||this.title;if(!mark)
return;var target=this;var original=$(this);if(this.type=="password"){target=$("<input />").insertBefore(this).css("display",$(this).css("display")).attr("size",this.size).attr("title",this.title).attr("class",this.className).addClass("watermark")[0];if(!this.value){$(this).hide();}else{$(target).hide();}}
if(!target.value||mark==this.value){$(target).addClass("watermark");}
if(!this.value||target!=this){target.value=mark;}
$(target).focus(function(){if(target!=original[0]){$(this).hide();original.show().focus();}else if(this.value==mark){this.value='';$(this).removeClass("watermark");}});$(this).blur(function(){if(!this.value.length){if(target!=original[0]){$(target).show();original.hide();}else{this.value=mark;$(this).addClass("watermark")}}});$(this).parents("form:first").submit(function(){if($(target).hasClass("watermark")){$(target).attr("value","");$(target).removeClass("watermark");}});});};;$(document).ready(function(){$('#sbutton').click(function(){var user_input=$('#u').val();if(user_input.search(/ /)!=-1){alert('The Twitter username entered shoud not include spaces!');return false;}
var l=$('#loggedinuser').text();if(l==user_input||'@'+l==user_input){alert('Oops, looks like you\'re trying to use Geeky Follow to search for yourself (@'+user_input+')! '
+'You need to enter the Twitter name of a user that shares your interests, and this tool will help '
+'you add the most active and sociable users following this tweeple.');return false;}});$('#u').searchField();});