function hideSuggestionsTop(){
	$("#suggestionsTop").hide();					
	$("#suggestionsTop").empty();
//	$("#suggestions").removeShadow();
}

$("#topsearch").keyup(function(){
	var val = $(this).val();
	if(val.length > 2){
		var str = "kw=" + val;
		
		jQuery.ajax({
			type: "POST",
			url: "/cart/_getProds.asp",
			dataType:"html",
			data:str,
			success:function(response){						
				if(response !="")
					{	
						$("#suggestionsTop").show();					
						$("#suggestionsTop").html(response);			
					//	$("#suggestions").redrawShadow({left:-1,top:-1,opacity:0.1, blur:1,color:'#cccccc'});
						$(".suggestion").mouseover(function(){
							$(this).css("background-color","#EFEFEF");
						});
							
						$(".suggestion").mouseout(function(){
							$(this).css("background-color","#ffffff");
						});	
					}
					else
					{
						hideSuggestionsTop();
					}				
			}				   
		});
	}
	else
	{ hideSuggestionsTop();}
});

