$(document).ready(function(){
	$('.item-im img').bind('mouseover mouseleave',function(){
		$(this).parent().parent().find('a.item-name').toggleClass('hover');
	});
});
