$( function() {
	$('#jhfix').hover( 
		function() { $(this).addClass('myhover');  },  
		function() { $(this).removeClass('myhover');  }  
	);
})
