This is what I have:
$(\'#blah\').hover(function(){ $(\'etc\').show(); }, function(){ $(\'etc\').hide(); });
This works just fine, now
use
jQuery.on("hover","#blah", function..)
Or you can use toggle feature of jQuery too