// Initializing the tiptip function
$(document).ready(function() {
	$('.sharing').tipTip();
	$('#stillinger').tipTip();
});

// Initializing the fancybox function
$(document).ready(function() {
	//Personoversikt
	$('.people').fancybox();
	//Gruppetimeregistrering
	$('a#exc-registration').fancybox({
		'width'             : '50%',
		'height'            : '50%',
    'autoScale'         : false,
    'transitionIn'      : 'none',
    'transitionOut'     : 'none',
    'type'              : 'iframe'
	});
	//Organisasjonsbilde
	$('a#organisation').fancybox();
	// Intranett
	$('a#adminblock').fancybox();
	//Bildedatebase
  $('.imagelist').fancybox({
    'transitionIn'	:	'fade',
    'transitionOut'	:	'fade',
    'speedIn'		:	600, 
    'speedOut'		:	200, 
    'overlayShow'	:	true,
    'hideOnOverlayClick' : true,
		'titlePosition' : 'over',
		'titleFormat': function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Bilde ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' - ' + title + '</span>';
		}
  });
});
