// st = sidebar tabs
var $st = jQuery.noConflict();
$st(document).ready(function(){	   
     $st(".tab-menu > li").click(function(e){  
        switch(e.target.id){  
             case "popular-posts":  
                 //change status & style menu  
				 $st("#recent-comments").removeClass("active"); 
                 $st("#popular-posts").addClass("active");  
                 //display selected division, hide others  
                 $st("div.popular-posts").fadeIn();  
                 $st("div.recent-comments").css("display", "none");  
             break;  
             case "recent-comments":  
                 //change status & style menu  
                 $st("#popular-posts").removeClass("active");  
                 $st("#recent-comments").addClass("active");   
                 //display selected division, hide others  
                 $st("div.recent-comments").fadeIn();  
                 $st("div.popular-posts").css("display", "none");  
             break;  
         }  
         //alert(e.target.id);  
         return false;  
     });  
});