function hilite(obj)
{
	obj.style.borderColor = "#eed69a";
	obj.style.backgroundColor = "#eed69a";
}
function delite(obj)
{
	obj.style.borderColor = "#f7ebcc";
	obj.style.backgroundColor = "#f7ebcc";
}
function viewDetails(id)
{
	window.location.href="best-food.php?i="+id;
}