jQuery(function($){	

	var $pcontent = $("#pop-upcoming .content");
	$("#pop-upcoming .hit").click(function(){
		$pcontent.toggle(200);
		return false;
	});
	
	//Highlight current page
	try{
		if(currentPage!=null)
		$("#navigation > li").eq(currentPage-1).addClass("active");
	}
	catch(e){
	}

});

