$(document).ready( function () {
  $('#plaque').before('<div id="pager">').cycle({fx: 'scrollHorz', speed: 900, pager: '#pager', timeout: 8000, cleartype: 1});
  $('a[rel=external]').attr('target', '_blank');
  $('a.contact').click(function () {$('#contact').slideToggle('slow'); return false;});
  $('a.close').click(function () {$('#contact').slideToggle('slow');});
  $('ul.inform li').click(function () {$('ul.answer li', this).slideToggle('slow');});
  $('.team-member .image').click(function () {$('.team-member .profile', this).slideToggle('slow');});
  $('a[rel=gt_event]').fancybox({
            'transitionIn'  : 'none',
            'transitionOut' : 'none',
            'titlePosition' : 'over',
            'titleFormat'   : function(title, currentArray, currentIndex, currentOpts) {
                    return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
            }
    });
  $('input').focus(function () {
      if ($(this).val() === $(this).attr('title')) {$(this).val('');}
      }).blur(function () {
      if ($(this).val() === '') {$(this).val($(this).attr('title'));}
    });
});
