/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function add_remove_class(op,id,class_name){

  if(op=="remove"){
    $("#"+id).removeClass(class_name);
  }
  else if(op=="add"){
    $("#"+id).addClass(class_name);
  }
  return true;
}
