jQuery(document).ready(function(){
	$('#nav th').hover(function(){
		$(this).addClass('thhover');
	},function(){
		$(this).removeClass('thhover');
	})
})
