 $(document).ready(function(){
  
   $("a#ft-1").addClass("active");	
   var total = $('a.ft').size();
  
   $("a.ft").mouseover(function(event){
        
       var tmp = this.id;
       var uid = tmp.substr(3);
       
       for (i=1; i <= total; i++){
         	$(".feature-"+i).hide();
         	$("a#ft-"+i).removeClass("active");
       }
       
       $(".feature-"+uid).show();
       $("a#ft-"+uid).addClass("active");	
       event.preventDefault();
       
     });
   
 });
