Trying to use an onmouseover event
echo $html->link("Dashboard",
"/dashboard/index",
array("onmouseover" => "Tip('Test');") );
becomes
<a href="/dashboard/index" onmouseover="Tip('Test');">Dashboard</a>
How do I prevent the link function from removing the single quotes?