You might get Component unavailable
if you import the jQuery script directly.
Maybe it's what @Conley was talking about...
You can use
@require http://userscripts.org/scripts/source/85365.user.js
which is an modified version to work on Greasemonkey, and then get the jQuery object
var $ = unsafeWindow.jQuery;
$("div").css("display", "none");