$(document).ready(function(){

/*--------focus on the searc form----------->
*/
				   
 $("input:text:first").focus();	
 

/*--------highlighter----------->
*/

function highlighter(k){
 $(document).ready(function() {
 var matches = k;
  if (!matches) return;
  var terms = unescape(matches.replace(/\%/g, ' '));
  var re = new RegExp().compile('(' + terms + ')', 'i');
  $("dl *").each(function() {
    if ($(this).children().size() > 0) return;
    if ($(this).is("xmp, pre")) return;
    var html = $(this).html();
    var newhtml = html.replace(re, '<span class="highlight">$1</span>');
    $(this).html(newhtml);
  });
  });
  }

	 /* INICIO DE BUZZTABS*/
	   $(function() {

	    $('#buzztabs ul').tabs({ fxFade: true, fxSpeed: 'fast' });

	});
					
	 /* FIN DE BUZZTABS*/


});










