/**
 * @author Dag Eng
 */

$(document).ready(function() {
	
	/*
	// Countdown clock
	$(function() {
		setInterval("countdown_li()", 1000);
	});
	
	*/
	
	// Fancybox flickr image gallery
	$("a[rel=flickr_images]").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>';
			return '<span id="fancybox-title-over">' + title + '</span>';
		}
	});
	
	// Group/actor photos
	$("a.groupImages").fancybox({
		'overlayShow'	: false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});
	
	/*
	// Spam bot protection
	var nina_mail = 'ninavilde' + '@' + 'hotmail.com';
	var stine_mail = 'stinehofa' + '@' + 'hotmail.com';
	var mattis_mail = 'mattis.goksoyr' + '@' + 'gmail.com';
	var aksel_mail = 'aksel.borgen' + '@' + 'gmail.com';
	var guro_mail = 'guro.karijord' + '@' + 'hotmail.com';
	var ida_mail = 'idabing' + '@' + 'hotmail.com';
	
	$('#email-nina').html('<a href="mailto:' + nina_mail + '">' + nina_mail + '</a>');
	
	$('#email-stine').html('<a href="mailto:' + stine_mail + '">' + stine_mail + '</a>');
	
	$('#email-mattis').html('<a href="mailto:' + mattis_mail + '">' + mattis_mail + '</a>');
	
	$('#email-aksel').html('<a href="mailto:' + aksel_mail + '">' + aksel_mail + '</a>');
	
	$('#email-guro').html('<a href="mailto:' + guro_mail + '">' + guro_mail + '</a>');
	
	$('#email-ida').html('<a href="mailto:' + ida_mail + '">' + ida_mail + '</a>');
	*/
		
});
