the code I tested with:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/
TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1252" />
<title>select</title>
<script type="text/javascript">
function redirect(url) {
window.location = url;
}
</script>
<script type="text/javascript" src="jquery-1.3.2.min.js"></
script>
<script type="text/javascript"
src="jquery.hoverIntent.minified.js"></script>
<script type="text/javascript" src="jquery.cluetip.js"></script>
</head>
<body>
<form id="frmSelect" target="SomeWindow" action="" method="get">
<div class="nextcontainer">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<a href='/stuff/select.aspx?sid=15454' class="cell_link"
rel='.nxt_billing' title="Wednesday June 24 2009">
Wed 06/24</a><br/>
<span class="nxt_billing">
<a href='/stuff/select.aspx?sid=15454'>click for details</a>
<span>THE SWA</span>
</span></td>
<td>
<a href='/stuff/select.aspx?sid=15452' class="cell_link"
rel='.nxt_billing' title="Thursday June 25 2009">
Thu 06/25</a><br/>
<span class="nxt_billing">
<a href='/stuff/select.aspx?sid=15452'>click for details</a>
<span>THE DYNA</span>
</span></td>
<td>
<a href='/stuff/select.aspx?sid=15430' class="cell_link"
rel='.nxt_billing' title="Friday June 26 2009">
Fri 06/26</a><br/>
<span class="nxt_billing">
<a href='/stuff/select.aspx?sid=15430'>click for details</a>
<span>LIFE CRUISE & FRIENDS</span>
</span></td>
<td>
<a href='/stuff/select.aspx?sid=15455' class="cell_link"
rel='.nxt_billing' title="Friday July 10 2009">
Fri 07/10</a><br/>
<span class="nxt_billing">
<a href='/stuff/select.aspx?sid=15455'>click for details</a>
<span>THE LEEBS</span>
</span></td>
<td>
<a href='/stuff/select.aspx?sid=15441' class="cell_link"
rel='.nxt_billing' title="Friday July 17 2009">
Fri 07/17</a><br/>
<span class="nxt_billing">
<a href='/stuff/select.aspx?sid=15441'>click for details</a>
<span>THE BLEYS</span>
</span></td>
<td>
<a href='/stuff/select.aspx?sid=15444' class="cell_link"
rel='.nxt_billing' title="Saturday July 25 2009">
Sat 07/25</a><br/>
<span class="nxt_billing">
<a href='/stuff/select.aspx?sid=15444'>click for details</a>
<span>AFTER FEAT</span>
</span></td>
<td>
<a href='/stuff/select.aspx?sid=15450' class="cell_link"
rel='.nxt_billing' title="Wednesday August 26 2009">
Wed 08/26</a><br/>
<span class="nxt_billing">
<a href='/stuff/select.aspx?sid=15450'>click for details</a>
<span>WHO'S THERE</span>
</span></td>
</tr>
</table>
</div>
<script type="text/javascript" >
$(function() {
$('.nextcontainer a.cell_link').cluetip(
{
local: true,
cursor: 'pointer',
sticky: true,
cluetipClass: 'jtip',
showTitle: true, // hide the clueTip's heading
mouseOutClose: true,
closePosition: 'title',
hideLocal: true
}
);
});
</script>
</form></body></html>