// JavaScript Document
// Must be *after* the jquery scripts!

    $(document).ready(function() {
      $('#positions').hide();
	  
		$('#showPositions').click(function(e){
		e.preventDefault();
		   $('#positions').show('fold');
		});
		
		$('.closebtntop,.closebtnbottom').click(function(e){
		e.preventDefault();
		   $('#positions').hide('fold');
		});

		$('#morebutton').click(function(e){
		e.preventDefault();
		   $('.showtherest').show('fold');
		   $('#morebutton').hide();
		});

		$('#lessbutton').click(function(e){
		e.preventDefault();
		   $('.showtherest').hide('fold');
		   $('#morebutton').show();
		});


		$("a[rel=farewell]").fancybox({
			'transitionIn'		: 'fade',
			'transitionOut'		: 'fade',
			'titlePosition' 	: 'over',
			'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
				return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
			}
		});

    });

