jQuery.noConflict(); function lookup(inputString) { if(inputString.length == 0) { // Hide the suggestion box. jQuery('#suggestions').hide(); } else { jQuery.post("/ajaxsearch.php", {queryString: ""+inputString+""}, function(data){ if(data.length >0) { jQuery('#suggestions').show(); jQuery('#autoSuggestionsList').html(data); } }); } } // lookup function fill(thisValue) { jQuery('#ccp0--prodsearch--string').val(thisValue); setTimeout("jQuery('#suggestions').hide();", 200); } jQuery(document).ready(function(){ jQuery(".suggestionsBox").mouseleave(function(){ omg = setTimeout("jQuery('.suggestionsBox').fadeOut()",1500); }); jQuery(".suggestionsBox").mouseenter(function(){ omg = setTimeout("jQuery('.suggestionsBox').fadeOut()",1500); clearTimeout(omg); }); });