$(document).ready(function() {


  // Все поля формы
  var elements = $('.spistbl');

  // Blur
  elements.blur(function() {
    if (this.value.replace(/(^[\s ]+|[\s ]+$)/g, '') == '') {
      $(this).css('color', '#ACACAC');
      $(this).val($(this).attr('alt'));
    }
  });

  // Focus
  elements.focus(function() {
    if (this.value == $(this).attr('alt')) {
      $(this).css('color', '#000000');
      $(this).val('');
    }
  });

});
$(document).ready(function(){
  $("#fancy a").fancybox();
});

