I'm using a Link Supressor on a RapidWeaver theme I'm working on. The jQuery code is below. All it does is kill the parent links for drop down menus so that they can't be clicked on. Unfortunately the 'hand' cursor or \[code\]pointer\[/code\] cursor still shows up!\[code\]// Link Suppressor script by Will Woodgate - visit willwoodgate.com for more information$(document).ready(function(){ $("#nav li:has(ul)").hover(function() { $(this).children("a").addClass("nolink").click(function(e) { e.preventDefault(); }); });});\[/code\]What I want to do is also add the style for \[code\]cursor:default;\[/code\] so that the correct cursor (the default cursor) shows up when you hover over the deadened link! I need to do this part of the styling in the jQuery. That is essential.Thanks!