$(document).ready(function(){
	$('.tpNV li').hover(function(){
		$(this).find('ul.subTN').show();
	},function(){
		$(this).find('ul.subTN').hide();
	});
});
