

$(document).ready(function() {

//  $("#searchline").corner();


   if ($("#lists").size()>0 )
     $("#lists").jcarousel({
        itemVisible: 3,
        itemScroll: 1
    }).show();

  $("#qbox").autocomplete("find-ac.mws", { extraParams:new Array("k"), delay:100, minChars:1, matchSubset:false, matchContains:false, cacheLength:20, onItemSelect:selectItem, formatItem:formatItem, selectOnly:1 });

});

function selectItem(li) {
    $("#searchline")[0].submit();
}

function formatItem(row) {
  return "<div class=\"word\">" + row[0] + "</div>&nbsp;&nbsp;<div class=\"hits\">" + row[1] + " users</div>";
}

function validate() {
  if ($("#qbox").val().length==0) {
    alert("Please enter an interest to search for in the blank");
    return false;
  }
  return true;
}