
$(document).ready(function() {

  $('#notice').fadeOut(10000);
  $('#error').fadeOut(10000);

  // Open Links in another window - this should be for development only
  $("a[href^='http']").attr('target','_blank');
  $("a[class^='vrdir']").attr('target','_blank');
  $(".nav_selected").css('color', 'white');

  $('#user_quote').limitChars({
    limit: 255,
    infodiv: 'charsLeft'
  });


  $('#link_description').limitChars({
    limit: 360,
    infodiv: 'charsLeft'
  });
  
  $('#link_title').limitWords({
    limit: 8,
    infodiv: 'wordsLeft',
    display_counter: false
  });

  $('#link_title').limitChars({
    limit: 80
  });

  $('#link_name').limitChars({
    limit: 30
  });

  $('.uname').limitChars({
    limit: 20
  });

  $('.upword').limitChars({
    limit: 12
  });

  $('#upword_conf').limitChars({
    limit: 12
  });


  $('.text_input_tag').hover(function(){
    $(this).css('text-decoration', 'underline');
  },
  function(){
    $(this).css('text-decoration', 'none');
  });

  $('#user_vote a').tooltip(
  {
    track: true,
    delay: 0,
    showURL: false,
    showBody: " - ",
    fade: 250
  });

});

