$(function(){
	$('li.tm').each(function(i){
		$(this).hover(
			function(){	
				$(this).parent().css('background-position','0 -'+(35 * i)+'px');
				if($(this).children('div').get(0)!=undefined) $($(this).children('div').get(0)).fadeIn(200);
			},
			function(){	
				$(this).parent().css('background-position','0 -245px');
				if($(this).children('div').get(0)!=undefined) $($(this).children('div').get(0)).hide();
			}
		);
	});
})
