Syntax Error, unrecognized expression: [object Object]

Syntax Error, unrecognized expression: [object Object]

hi there,

i've got the following code:

  1. $(".serv-wrap").each(function(){
  2.     thisObject = $(this);
  3.     $(thisObject).hoverIntent(function(){
  4.         hElement = $(" h4", thisObject);
  5.         combinedElements = hElement + "," + thisObject;
  6.         $(combinedElements).stop().animate({
  7.          marginTop: "-153"
  8.         },100);
  9.     },function(){
  10.         $(combinedElements).stop().animate({
  11.          marginTop: "0"
  12.         },400);
  13.     });
  14. });
"hElement" is a child of "thisObject" but due to positioning needs to be targeted specifically for the animation...

i get the error message in the subject of this post... 

i've tried all sorts of methods and variations, but the gist of it is that whenever i try to combine both $(this) and "hElement" into one selector statement i get that error message.