/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
/** This function makes the current selection active.**/
function make_selection_active(class_id, elem_id){
   $("."+class_id).each(function(){
      $(this).removeClass(class_id);
   })
   $('#'+elem_id).addClass(class_id);
}

