var HINTS_CFG = {
    'top'        : 5, // a vertical offset of a hint from mouse pointer
    'left'       : 5, // a horizontal offset of a hint from mouse pointer
    'css'        : 'hintsClass', // a style class name for all hints, TD object
    'show_delay' : 0, // a delay between object mouseover and hint appearing
    'hide_delay' : 10000, // a delay between hint appearing and hint hiding
    'wise'       : true,
    'follow'     : false,
    'z-index'    : 0 // a z-index for all hint layers
},
HINTS_ITEMS = [
    "<table cellspacing='1' cellpadding='1' style='border:solid;border-width:1;border-color:black;background-color:#faf9e7;color:black;font-size:8pt' width='170'><tr><td>Fill at least City, State or Zip</td></tr></table>",
    "<table cellspacing='1' cellpadding='1' style='border:solid;border-width:1;border-color:black;background-color:#faf9e7;color:black;font-size:8pt' width='170'><tr><td>Ideas: 'chicken wings', 'pork chops', 'sushi' for Dish/Product Name</td></tr></table>",
    "<table cellspacing='1' cellpadding='1' style='border:solid;border-width:1;border-color:black;background-color:#faf9e7;color:black;font-size:8pt' width='155'><tr><td>Just fill City, State or Zip to find specials in your area</td></tr></table>",
    "<table cellspacing='1' cellpadding='1' style='border:solid;border-width:1;border-color:black;background-color:#faf9e7;color:black' width='180'><tr><td>Online ordering available</td></tr></table>",
    "<table cellspacing='1' cellpadding='1' style='border:solid;border-width:1;border-color:black;background-color:#faf9e7;color:black' width='180'><tr><td>Delivery service available</td></tr></table>",
    "<table cellspacing='1' cellpadding='1' style='border:solid;border-width:1;border-color:black;background-color:#faf9e7;color:black' width='180'><tr><td>Table Reservation available</td></tr></table>"
];
var myHint = new THints (HINTS_CFG, HINTS_ITEMS);
