$(document).ready(function() {  var searchBox = $("input.s1");  var searchBoxDefault = "Search the Soap Exchange";  searchBox.focus(function(){          if($(this).attr("value") == searchBoxDefault) $(this).attr("value", "");  });  searchBox.blur(function(){          if($(this).attr("value") == "") $(this).attr("value", searchBoxDefault);  });  $( "#product_tabs" ).tabs();  colorboxSelector();  $("a.ttip").each( function(index,obj){      if($(obj).attr('title')){          $(obj).tinyTips(tinytipsTheme, 'title');      }  });  Cufon.replace('article#soap_story h1, article#soap_story h2, aside#news_sidebar h4, section#postcomment h4, span.comm-header, .cuffy, .menu h2, h3.gform_title');});
