$(document).ready(function(){
  $('div.item img').hover(
    function () {
	  thisHov = $(this).parent().next().find('a');
	  thisHov.addClass("img_hover");
	}, 
	function () {
	  thisHov.removeClass("img_hover");
	} 	
  );






}); //end docReady