function typefacehover(){
	setHoversForContainer("#nav");
	//setHoversForContainer(".topMenu");
}


function setHoversForContainer(containerName){
	$(containerName+" a").each(function(){
		var myContent = $(this).html();
		var newContent= "";
		if (containerName == "#nav"){
			newContent= "<span class='tfHoverOff'><span style='font-size:19px; padding-right:5px;'>&bull;</span></span>"+"<span class='tfHoverOn'>"+myContent+"</span>";
		}else{
			newContent= "<span class='tfHoverOff'>"+myContent+"</span>"+"<span class='tfHoverOn'>"+myContent+"</span>";
		}
			
		$(this).html(newContent);
		//$(".tfHoverOn",this).hide();
			$(this).hover(
				function(){
					$(".tfHoverOff",this).hide();
					$(".tfHoverOn",this).show();
				},
				function(){
					$(".tfHoverOff",this).show();
					$(".tfHoverOn",this).hide();
			});
	});
}
