Dot or no Dot ?

Dot or no Dot ?

Sorry to be a pain in the wrong place . But can somebody tell me . 

  1. $(document).ready(function() {
  2.     var target = '.bigLink';
  3.     var hoverClass = 'hoverBigLink';
  4.     $(target).each(function(){
  5.       $(this).hover(
  6.             function(){
  7.               $(this).addClass(hoverClass);
  8.               status=$(this).find('a').attr('href');
  9.               },
  10.               function(){
  11.             $(this).removeClass(hoverClass);
  12.             status='';
  13.           });

  14.           $(this).click(function(){
  15.           location = $(this).find('a').attr('href');
  16.           });
  17.          $(this).css('cursor', 'pointer');
  18.     });

  19.     $(target + ' a')
  20.     .focus(function() {
  21.       $(this).parents(target).addClass(hoverClass);
  22.     })
  23.     .blur(function() {
  24.       $(this).parents(target).removeClass(hoverClass);
  25.    });
  26. }); // end ready()

Why is bigLink preceded by a Dot , where as hoverBigLink is not ? Why So ? 

  1. var target = '.bigLink';
  2. var hoverClass = 'hoverBigLink';
Why the discrimination ? :D