$(document).ready(function(){
   $(".linker").each(function() {
      $(this).hover(
         function() {
            $(this).addClass("on");
         },
         function() { 
            $(this).removeClass("on");
         }
      );
   });
   $("#capchlink").click(function () {
      $('#img').attr("src", "/_indy/sys/core/get_captcha/?opt[width]=120&opt[height]=50&opt[background]=%23ffffff&opt[font]=%23737373&" + Math.random());
      return false;
   });
});