var Kolon = Kolon || {};

Kolon.authorImageInstructions = 'Forfatterportrettene er rettighetsbelagt. Rettighetene er kjøpt til bruk for Kolon Forlag og profilering av forfatterskapene / titlene Kolon utgir. Ved annen bruk, må det søkes rettigheter hos rettighetshaver, som er fotografen. Husk at fotograf alltid skal krediteres. Hvis ikke fotografens navn er angitt, skal krediteringen være Kolon Forlag.';

$(function () {

	$('.imageDownloadTrigger').click(function (e) {
		e.preventDefault();
		var that = $(this);
		that.hide();
		that.parent().append('<p class="imageDownloadInstructions">' + Kolon.authorImageInstructions + '<br/><br/><a href="' + that.attr('href') + '" class="imageDownloadAction">Fortsett</a> | <a href="#" class="imageDownloadAbort">Avbryt</a></p>');
		$('.imageDownloadAbort').click(function (e) {
			e.preventDefault();
			$(this).parent().remove();
			that.show();
		});
	});

	$('.imageDownloadProxy').click(function (e) {
		e.preventDefault();
		if (!$(this).parent().find('a.imageDownloadAction').length) {
			$(this).parent().find('a.imageDownloadTrigger').click();
		}
	});

	var url = window.location.href;
	$('#share').append('<a href="http://twitter.com/share" class="twitter">Del på Twitter</a>');
	$('#share').append('<iframe src="http://www.facebook.com/plugins/like.php?href=' + encodeURIComponent(url) + '&amp;send=false&amp;layout=button_count&amp;width=450&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:21px;" allowTransparency="true"></iframe>');

});

