This is just a simple example of how the maps look.
Because it's a really common question: mouse over this to trigger a hilight from an external element!
The code involved is very simple:
$('#squidheadlink').mouseover(function(e) {
$('#squidhead').mouseover();
}).mouseout(function(e) {
$('#squidhead').mouseout();
}).click(function(e) { e.preventDefault(); });
Back to the index