$(document).ready(function() {
	$("li", "#home_categories_list").mouseover(
		function() {
			$("#catText").attr("href", "/humor-"+$(this).attr("seoname")+'.html').html($(this).attr("name"));
			$("li", this.parentNode).removeClass("selected");
			$(this).addClass("selected");
			$("div.categoryArticles").hide();
			$("#"+$(this).attr("seoname")).show();
		}
	);
});

function pop_great(nodeObj, type) {
	$("li", nodeObj.parentNode).removeClass("selected");
	$(nodeObj).addClass("selected");

	if (type=="popular") {
		$("#top50").hide();
	} else {
		$("#popular").hide();
	}	

	$("#"+type).show();
}