$(document).ready(function(){
	$('#tojSlider').cycle({ 
		fx: 'scrollLeft', 
		timeout: 5000
	});
	$("#mostpop").click(function () {
	  $("#popularwrap").show();
	  $("#popularwrap p").fadeIn("slow");
	  $("#commentswrap p").fadeOut("slow");			  
	  $("#commentswrap").hide();
	});
	$("#newcom").click(function () {
	  $("#popularwrap p").fadeOut("slow");
	  $("#popularwrap").hide();
	  $("#commentswrap").show();
	  $("#commentswrap p").fadeIn("slow");			  
	});
});