$(document).ready(function(){$("#trending_loading").fadeIn();$("#trending").load("php/selectTrendingQuestionsHome.php");$("#trending_loading").fadeOut();});$(function(){$('.load-more').live("click",function(){$(this).remove();$(".load-more-loading").show();var loadMoreId=this.id;var loadMoreSplit=loadMoreId.split("-");var min_limit=loadMoreSplit[1];$.ajax({type:"POST",url:"php/selectMoreQuestions.php",data:"min_limit="+min_limit,success:function(msg){$(".load-more-loading").hide();$("#more_questions").append(msg);$(".top-question").slice(-10).effect("highlight",{},1000);}});});});
