﻿//Search Suggestions - Added 08/06/2009 by Joshua Oiknine
$("#keywords").autocomplete(
    "searchSuggestions.aspx",
    {
        minChars:2,
        matchSubset:1,
        matchContains:1,
        maxItemsToShow:10,
        cacheLength:10,
        autoFill:true
    });

$('#keywords').hover(function(){$(this).css('border','2px solid #666')}, function(){$(this).css('border','2px solid #ccc')});