/* Merged Plone Javascript file
 * This file is dynamically assembled from separate parts.
 * Some of these parts have 3rd party licenses or copyright information attached
 * Such information is valid for that section,
 * not for the entire composite file
 * originating files are separated by - filename.js -
 */

/* - ++resource++portletbanners.js - */
// http://www.literaturfestival.com/portal_javascripts/++resource++portletbanners.js?original=1
jq.fn.portletBanners=function(delay,fade_speed){jq(this).each(function(){var container=jq(this);var items=container.find('.portletbanner');container.height(container.height());container.width(container.width());container.css('position','relative');items.css({'position':'absolute','top':0,'left':0});var active=items.eq(0);
function rotate(){var next=active.next('.portletbanner');if(next.length==0){next=items.eq(0)}
active.fadeOut(fade_speed);next.fadeIn(fade_speed, function(){active=next})}
var rotate_timer=setInterval(rotate,delay)});return this};

/* - ++resource++ilb.skin.script/jquery.mousewheel.js - */
// http://www.literaturfestival.com/portal_javascripts/++resource++ilb.skin.script/jquery.mousewheel.js?original=1
(function($){var types=['DOMMouseScroll','mousewheel'];$.event.special.mousewheel={setup: function(){if(this.addEventListener)
for(var i=types.length;i;)
this.addEventListener(types[--i],handler,false);else
this.onmousewheel=handler},teardown: function(){if(this.removeEventListener)
for(var i=types.length;i;)
this.removeEventListener(types[--i],handler,false);else
this.onmousewheel=null}};$.fn.extend({mousewheel: function(fn){return fn?this.bind("mousewheel",fn):this.trigger("mousewheel")},unmousewheel: function(fn){return this.unbind("mousewheel",fn)}});
function handler(event){var args=[].slice.call(arguments,1),delta=0,returnValue=true;event=$.event.fix(event||window.event);event.type="mousewheel";if(event.wheelDelta) delta=event.wheelDelta/120;if(event.detail) delta=-event.detail/3;args.unshift(event,delta);return $.event.handle.apply(this,args)}})(jQuery);

/* - ++resource++ilb.skin.script/jquery.jScrollPane.js - */
/* Copyright (c) 2009 Kelvin Luck (kelvin AT kelvinluck DOT com || http://www.kelvinluck.com)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) 
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 * See http://kelvinluck.com/assets/jquery/jScrollPane/
 * $Id: jScrollPane.js 90 2010-01-25 03:52:10Z kelvin.luck $
 * Replace the vertical scroll bars on any matched elements with a fancy
 * styleable (via CSS) version. With JS disabled the elements will
 * gracefully degrade to the browsers own implementation of overflow:auto.
 * If the mousewheel plugin has been included on the page then the scrollable areas will also
 * respond to the mouse wheel.
 * @example jQuery(".scroll-pane").jScrollPane();
 * @name jScrollPane
 * @type jQuery
 * @param Object	settings	hash with options, described below.

 * scrollbarWidth	-	The width of the generated scrollbar in pixels
* scrollbarMargin	-	The amount of space to leave on the side of the scrollbar in pixels
* wheelSpeed		-	The speed the pane will scroll in response to the mouse wheel in pixels
* showArrows		-	Whether to display arrows for the user to scroll with
* arrowSize		-	The height of the arrow buttons if showArrows=true
* animateTo		-	Whether to animate when calling scrollTo and scrollBy
* dragMinHeight	-	The minimum height to allow the drag bar to be
* dragMaxHeight	-	The maximum height to allow the drag bar to be
* animateInterval	-	The interval in milliseconds to update an animating scrollPane (default 100)
* animateStep		-	The amount to divide the remaining scroll distance by when animating (default 3)
* maintainPosition-	Whether you want the contents of the scroll pane to maintain it's position when you re-initialise it - so it doesn't scroll as you add more content (default true)
* tabIndex		-	The tabindex for this jScrollPane to control when it is tabbed to when navigating via keyboard (default 0)
* enableKeyboardNavigation - Whether to allow keyboard scrolling of this jScrollPane when it is focused (default true)
* animateToInternalLinks - Whether the move to an internal link (e.g. when it's focused by tabbing or by a hash change in the URL) should be animated or instant (default false)
* scrollbarOnLeft	-	Display the scrollbar on the left side?  (needs stylesheet changes, see examples.html)
* reinitialiseOnImageLoad - Whether the jScrollPane should automatically re-initialise itself when any contained images are loaded (default false)
* topCapHeight	-	The height of the "cap" area between the top of the jScrollPane and the top of the track/ buttons
* bottomCapHeight	-	The height of the "cap" area between the bottom of the jScrollPane and the bottom of the track/ buttons
* observeHash		-	Whether jScrollPane should attempt to automagically scroll to the correct place when an anchor inside the scrollpane is linked to (default true)
 
 * @return jQuery
 * @cat Plugins/jScrollPane
 * @author Kelvin Luck (kelvin AT kelvinluck DOT com || http://www.kelvinluck.com)
 */

(function($) {

$.jScrollPane = {
	active : []
};
$.fn.jScrollPane = function(settings)
{
	settings = $.extend({}, $.fn.jScrollPane.defaults, settings);

	var rf = function() { return false; };
	
	return this.each(
		function()
		{
			var $this = $(this);
			var paneEle = this;
			var currentScrollPosition = 0;
			var paneWidth;
			var paneHeight;
			var trackHeight;
			var trackOffset = settings.topCapHeight;
			var $container;
			
			if ($(this).parent().is('.jScrollPaneContainer')) {
				$container = $(this).parent();
				currentScrollPosition = settings.maintainPosition ? $this.position().top : 0;
				var $c = $(this).parent();
				paneWidth = $c.innerWidth();
				paneHeight = $c.outerHeight();
				$('>.jScrollPaneTrack, >.jScrollArrowUp, >.jScrollArrowDown, >.jScrollCap', $c).remove();
				$this.css({'top':0});
			} else {
				$this.data('originalStyleTag', $this.attr('style'));
				// Switch the element's overflow to hidden to ensure we get the size of the element without the scrollbars [http://plugins.jquery.com/node/1208]
				$this.css('overflow', 'hidden');
				this.originalPadding = $this.css('paddingTop') + ' ' + $this.css('paddingRight') + ' ' + $this.css('paddingBottom') + ' ' + $this.css('paddingLeft');
				this.originalSidePaddingTotal = (parseInt($this.css('paddingLeft')) || 0) + (parseInt($this.css('paddingRight')) || 0);
				paneWidth = $this.innerWidth();
				paneHeight = $this.innerHeight();
				$container = $('<div></div>')
					.attr({'className':'jScrollPaneContainer'})
					.css(
						{
							'height':paneHeight+'px', 
							'width':paneWidth+'px'
						}
					);
				if (settings.enableKeyboardNavigation) {
					$container.attr(
						'tabindex', 
						settings.tabIndex
					);
				}
				$this.wrap($container);
				$container = $this.parent();
				// deal with text size changes (if the jquery.em plugin is included)
				// and re-initialise the scrollPane so the track maintains the
				// correct size
				$(document).bind(
					'emchange', 
					function(e, cur, prev)
					{
						$this.jScrollPane(settings);
					}
				);
				
			}
			trackHeight = paneHeight;
			
			if (settings.reinitialiseOnImageLoad) {
				// code inspired by jquery.onImagesLoad: http://plugins.jquery.com/project/onImagesLoad
				// except we re-initialise the scroll pane when each image loads so that the scroll pane is always up to size...
				// TODO: Do I even need to store it in $.data? Is a local variable here the same since I don't pass the reinitialiseOnImageLoad when I re-initialise?
				var $imagesToLoad = $.data(paneEle, 'jScrollPaneImagesToLoad') || $('img', $this);
				var loadedImages = [];
				
				if ($imagesToLoad.length) {
					$imagesToLoad.each(function(i, val)	{
						$(this).bind('load readystatechange', function() {
							if($.inArray(i, loadedImages) == -1){ //don't double count images
								loadedImages.push(val); //keep a record of images we've seen
								$imagesToLoad = $.grep($imagesToLoad, function(n, i) {
									return n != val;
								});
								$.data(paneEle, 'jScrollPaneImagesToLoad', $imagesToLoad);
								var s2 = $.extend(settings, {reinitialiseOnImageLoad:false});
								$this.jScrollPane(s2); // re-initialise
							}
						}).each(function(i, val) {
							if(this.complete || this.complete===undefined) { 
								//needed for potential cached images
								this.src = this.src; 
							} 
						});
					});
				};
			}
			
			var p = this.originalSidePaddingTotal;
			var realPaneWidth = paneWidth - settings.scrollbarWidth - settings.scrollbarMargin - p;

			var cssToApply = {
				'height':'auto',
				'width': realPaneWidth + 'px'
			}

			if(settings.scrollbarOnLeft) {
				cssToApply.paddingLeft = settings.scrollbarMargin + settings.scrollbarWidth + 'px';
			} else {
				cssToApply.paddingRight = settings.scrollbarMargin + 'px';
			}

			$this.css(cssToApply);

			var contentHeight = $this.outerHeight();
			var percentInView = paneHeight / contentHeight;
			
			var isScrollable = percentInView < .99;
			$container[isScrollable ? 'addClass' : 'removeClass']('jScrollPaneScrollable');

			if (isScrollable) {
				$container.append(
					$('<div></div>').addClass('jScrollCap jScrollCapTop').css({height:settings.topCapHeight}),
					$('<div></div>').attr({'className':'jScrollPaneTrack'}).css({'width':settings.scrollbarWidth+'px'}).append(
						$('<div></div>').attr({'className':'jScrollPaneDrag'}).css({'width':settings.scrollbarWidth+'px'}).append(
							$('<div></div>').attr({'className':'jScrollPaneDragTop'}).css({'width':settings.scrollbarWidth+'px'}),
							$('<div></div>').attr({'className':'jScrollPaneDragBottom'}).css({'width':settings.scrollbarWidth+'px'})
						)
					),
					$('<div></div>').addClass('jScrollCap jScrollCapBottom').css({height:settings.bottomCapHeight})
				);
				
				var $track = $('>.jScrollPaneTrack', $container);
				var $drag = $('>.jScrollPaneTrack .jScrollPaneDrag', $container);
				
				
				var currentArrowDirection;
				var currentArrowTimerArr = [];// Array is used to store timers since they can stack up when dealing with keyboard events. This ensures all timers are cleaned up in the end, preventing an acceleration bug.
				var currentArrowInc;
				var whileArrowButtonDown = function() 
				{
					if (currentArrowInc > 4 || currentArrowInc % 4 == 0) {
						positionDrag(dragPosition + currentArrowDirection * mouseWheelMultiplier);
					}
					currentArrowInc++;
				};

				if (settings.enableKeyboardNavigation) {
					$container.bind(
						'keydown.jscrollpane',
						function(e) 
						{
							switch (e.keyCode) {
								case 38: //up
									currentArrowDirection = -1;
									currentArrowInc = 0;
									whileArrowButtonDown();
									currentArrowTimerArr[currentArrowTimerArr.length] = setInterval(whileArrowButtonDown, 100);
									return false;
								case 40: //down
									currentArrowDirection = 1;
									currentArrowInc = 0;
									whileArrowButtonDown();
									currentArrowTimerArr[currentArrowTimerArr.length] = setInterval(whileArrowButtonDown, 100);
									return false;
								case 33: // page up
								case 34: // page down
									// TODO
									return false;
								default:
							}
						}
					).bind(
						'keyup.jscrollpane',
						function(e) 
						{
							if (e.keyCode == 38 || e.keyCode == 40) {
								for (var i = 0; i < currentArrowTimerArr.length; i++) {
									clearInterval(currentArrowTimerArr[i]);
								}
								return false;
							}
						}
					);
				}
				
				// showArrows
				if (settings.showArrows) {
					
					var currentArrowButton;
					var currentArrowInterval;

					var onArrowMouseUp = function(event)
					{
						$('html').unbind('mouseup', onArrowMouseUp);
						currentArrowButton.removeClass('jScrollActiveArrowButton');
						clearInterval(currentArrowInterval);
					};
					var onArrowMouseDown = function() {
						$('html').bind('mouseup', onArrowMouseUp);
						currentArrowButton.addClass('jScrollActiveArrowButton');
						currentArrowInc = 0;
						whileArrowButtonDown();
						currentArrowInterval = setInterval(whileArrowButtonDown, 100);
					};
					$container
						.append(
							$('<a></a>')
								.attr(
									{
										'href':'javascript:;', 
										'className':'jScrollArrowUp', 
										'tabindex':-1
									}
								)
								.css(
									{
										'width':settings.scrollbarWidth+'px',
										'top':settings.topCapHeight + 'px'
									}
								)
								.html('Scroll up')
								.bind('mousedown', function()
								{
									currentArrowButton = $(this);
									currentArrowDirection = -1;
									onArrowMouseDown();
									this.blur();
									return false;
								})
								.bind('click', rf),
							$('<a></a>')
								.attr(
									{
										'href':'javascript:;', 
										'className':'jScrollArrowDown', 
										'tabindex':-1
									}
								)
								.css(
									{
										'width':settings.scrollbarWidth+'px',
										'bottom':settings.bottomCapHeight + 'px'
									}
								)
								.html('Scroll down')
								.bind('mousedown', function()
								{
									currentArrowButton = $(this);
									currentArrowDirection = 1;
									onArrowMouseDown();
									this.blur();
									return false;
								})
								.bind('click', rf)
						);
					var $upArrow = $('>.jScrollArrowUp', $container);
					var $downArrow = $('>.jScrollArrowDown', $container);
				}
				// end showArrows
				
				if (settings.arrowSize) {
					trackHeight = paneHeight - settings.arrowSize - settings.arrowSize;
					trackOffset += settings.arrowSize;
				} else if ($upArrow) {
					var topArrowHeight = $upArrow.height();
					settings.arrowSize = topArrowHeight;
					trackHeight = paneHeight - topArrowHeight - $downArrow.height();
					trackOffset += topArrowHeight;
				}
				trackHeight -= settings.topCapHeight + settings.bottomCapHeight;
				$track.css({'height': trackHeight+'px', top:trackOffset+'px'})
				
				var $pane = $(this).css({'position':'absolute', 'overflow':'visible'});
				
				var currentOffset;
				var maxY;
				var mouseWheelMultiplier;
				// store this in a seperate variable so we can keep track more accurately than just updating the css property..
				var dragPosition = 0;
				var dragMiddle = percentInView*paneHeight/2;
				
				// pos function borrowed from tooltip plugin and adapted...
				var getPos = function (event, c) {
					var p = c == 'X' ? 'Left' : 'Top';
					return event['page' + c] || (event['client' + c] + (document.documentElement['scroll' + p] || document.body['scroll' + p])) || 0;
				};
				
				var ignoreNativeDrag = function() {	return false; };
				
				var initDrag = function()
				{
					ceaseAnimation();
					currentOffset = $drag.offset(false);
					currentOffset.top -= dragPosition;
					maxY = trackHeight - $drag[0].offsetHeight;
					mouseWheelMultiplier = 2 * settings.wheelSpeed * maxY / contentHeight;
				};
				
				var onStartDrag = function(event) {
					initDrag();
					dragMiddle = getPos(event, 'Y') - dragPosition - currentOffset.top;
					$('html').bind('mouseup', onStopDrag).bind('mousemove', updateScroll);
					if ($.browser.msie) {
						$('html').bind('dragstart', ignoreNativeDrag).bind('selectstart', ignoreNativeDrag);
					}
					return false;
				};
				
				var onStopDrag = function()
				{
					$('html').unbind('mouseup', onStopDrag).unbind('mousemove', updateScroll);
					dragMiddle = percentInView*paneHeight/2;
					if ($.browser.msie) {
						$('html').unbind('dragstart', ignoreNativeDrag).unbind('selectstart', ignoreNativeDrag);
					}
				};
				
				var positionDrag = function(destY)
				{
					$container.scrollTop(0);
					destY = destY < 0 ? 0 : (destY > maxY ? maxY : destY);
					dragPosition = destY;
					$drag.css({'top':destY+'px'});
					var p = destY / maxY;
					$this.data('jScrollPanePosition', (paneHeight-contentHeight)*-p);
					$pane.css({'top':((paneHeight-contentHeight)*p) + 'px'});
					$this.trigger('scroll');
					if (settings.showArrows) {
						$upArrow[destY == 0 ? 'addClass' : 'removeClass']('disabled');
						$downArrow[destY == maxY ? 'addClass' : 'removeClass']('disabled');
					}
				};
				
				var updateScroll = function(e)
				{
					positionDrag(getPos(e, 'Y') - currentOffset.top - dragMiddle);
				};
				
				var dragH = Math.max(Math.min(percentInView*(paneHeight-settings.arrowSize*2), settings.dragMaxHeight), settings.dragMinHeight);
				
				$drag.css(
					{'height':dragH+'px'}
				).bind('mousedown', onStartDrag);
				
				
				var trackScrollInterval;
				var trackScrollInc;
				var trackScrollMousePos;
				
				var doTrackScroll = function()
				{
					if (trackScrollInc > 8 || trackScrollInc%4==0) {
						positionDrag((dragPosition - ((dragPosition - trackScrollMousePos) / 2)));
					}
					trackScrollInc ++;
				};
				
				var onStopTrackClick = function()
				{
					clearInterval(trackScrollInterval);
					$('html').unbind('mouseup', onStopTrackClick).unbind('mousemove', onTrackMouseMove);
				};
				
				var onTrackMouseMove = function(event)
				{
					trackScrollMousePos = getPos(event, 'Y') - currentOffset.top - dragMiddle;
				};
				
				var onTrackClick = function(event)
				{
					initDrag();
					onTrackMouseMove(event);
					trackScrollInc = 0;
					$('html').bind('mouseup', onStopTrackClick).bind('mousemove', onTrackMouseMove);
					trackScrollInterval = setInterval(doTrackScroll, 100);
					doTrackScroll();
					return false;
				};
				
				$track.bind('mousedown', onTrackClick);
				
				
				
				$container.bind(
					'mousewheel',
					function (event, delta) {
						delta = delta || (event.wheelDelta ? event.wheelDelta / 120 : (event.detail) ? -event.detail/3 : 0);
						initDrag();
						ceaseAnimation();
						var d = dragPosition;
						positionDrag(dragPosition - delta * mouseWheelMultiplier);
						var dragOccured = d != dragPosition;
						return !dragOccured;
					}
				);

				var _animateToPosition;
				var _animateToInterval;
				function animateToPosition()
				{
					var diff = (_animateToPosition - dragPosition) / settings.animateStep;
					if (diff > 1 || diff < -1) {
						positionDrag(dragPosition + diff);
					} else {
						positionDrag(_animateToPosition);
						ceaseAnimation();
					}
				}
				
				var ceaseAnimation = function()
				{
					if (_animateToInterval) {
						clearInterval(_animateToInterval);
						delete _animateToPosition;
					}
				};
			
				var scrollTo = function(pos, preventAni) {
					if (typeof pos == "string") {
						// Legal hash values aren't necessarily legal jQuery selectors so we need to catch any
						// errors from the lookup...
						try {
							$e = $(pos, $this);
						} catch (err) {
							return;
						}
						if (!$e.length) return;
						pos = $e.offset().top - $this.offset().top;
					}
					ceaseAnimation();
					var maxScroll = contentHeight - paneHeight;
					pos = pos > maxScroll ? maxScroll : pos;
					$this.data('jScrollPaneMaxScroll', maxScroll);
					var destDragPosition = pos/maxScroll * maxY;
					if (preventAni || !settings.animateTo) {
						positionDrag(destDragPosition);
					} else {
						$container.scrollTop(0);
						_animateToPosition = destDragPosition;
						_animateToInterval = setInterval(animateToPosition, settings.animateInterval);
					}
				};
				
				$this[0].scrollTo = scrollTo;
				
				$this[0].scrollBy = function(delta)
				{
					var currentPos = -parseInt($pane.css('top')) || 0;
					scrollTo(currentPos + delta);
				};
				
				initDrag();
				
				scrollTo(-currentScrollPosition, true);
			
				// Deal with it when the user tabs to a link or form element within this scrollpane
				/*
				$('*', this).bind(
					'focus',
					function(event)
					{
						var $e = $(this);
						
						// loop through parents adding the offset top of any elements that are relatively positioned between
						// the focused element and the jScrollPaneContainer so we can get the true distance from the top
						// of the focused element to the top of the scrollpane...
						var eleTop = 0;
						
						while ($e[0] != $this[0]) {
							eleTop += $e.position().top;
							$e = $e.offsetParent();
						}
						
						var viewportTop = -parseInt($pane.css('top')) || 0;
						var maxVisibleEleTop = viewportTop + paneHeight;
						var eleInView = eleTop > viewportTop && eleTop < maxVisibleEleTop;
						if (!eleInView) {
							var destPos = eleTop - settings.scrollbarMargin;
							if (eleTop > viewportTop) { // element is below viewport - scroll so it is at bottom.
								destPos += $(this).height() + 15 + settings.scrollbarMargin - paneHeight;
							}
							scrollTo(destPos);
						}
					}
				);
				*/
				
				if (settings.observeHash) {
					if (location.hash && location.hash.length > 1) {
						setTimeout(function(){
							scrollTo(location.hash);
						}, $.browser.safari ? 100 : 0);
					}
					
					// use event delegation to listen for all clicks on links and hijack them if they are links to
					// anchors within our content...
					$(document).bind('click', function(e){
						$target = $(e.target);
						if ($target.is('a')) {
							var h = $target.attr('href');
							if (h && h.substr(0, 1) == '#' && h.length > 1) {
								setTimeout(function(){
									scrollTo(h, !settings.animateToInternalLinks);
								}, $.browser.safari ? 100 : 0);
							}
						}
					});
				}
				
				// Deal with dragging and selecting text to make the scrollpane scroll...
				function onSelectScrollMouseDown(e)
				{
				   $(document).bind('mousemove.jScrollPaneDragging', onTextSelectionScrollMouseMove);
				   $(document).bind('mouseup.jScrollPaneDragging',   onSelectScrollMouseUp);
				  
				}
				
				var textDragDistanceAway;
				var textSelectionInterval;
				
				function onTextSelectionInterval()
				{
					direction = textDragDistanceAway < 0 ? -1 : 1;
					$this[0].scrollBy(textDragDistanceAway / 2);
				}

				function clearTextSelectionInterval()
				{
					if (textSelectionInterval) {
						clearInterval(textSelectionInterval);
						textSelectionInterval = undefined;
					}
				}
				
				function onTextSelectionScrollMouseMove(e)
				{
					var offset = $this.parent().offset().top;
					var maxOffset = offset + paneHeight;
					var mouseOffset = getPos(e, 'Y');
					textDragDistanceAway = mouseOffset < offset ? mouseOffset - offset : (mouseOffset > maxOffset ? mouseOffset - maxOffset : 0);
					if (textDragDistanceAway == 0) {
						clearTextSelectionInterval();
					} else {
						if (!textSelectionInterval) {
							textSelectionInterval  = setInterval(onTextSelectionInterval, 100);
						}
					}
				}

				function onSelectScrollMouseUp(e)
				{
				   $(document)
					  .unbind('mousemove.jScrollPaneDragging')
					  .unbind('mouseup.jScrollPaneDragging');
				   clearTextSelectionInterval();
				}
				
				$container.bind('mousedown.jScrollPane', onSelectScrollMouseDown);
				
				$.jScrollPane.active.push($this[0]);
				
				
			} else {
				$this.css(
					{
						'height':paneHeight+'px',
						'width':paneWidth-this.originalSidePaddingTotal+'px',
						'padding':this.originalPadding
					}
				);
				$this[0].scrollTo = $this[0].scrollBy = function() {};
				// clean up listeners
				$this.parent().unbind('mousewheel').unbind('mousedown.jScrollPane').unbind('keydown.jscrollpane').unbind('keyup.jscrollpane');
			}
			
		}
	)
};

$.fn.jScrollPaneRemove = function()
{
	$(this).each(function()
	{
		$this = $(this);
		var $c = $this.parent();
		if ($c.is('.jScrollPaneContainer')) {
			$this.css(
				{
					'top':'',
					'height':'',
					'width':'',
					'padding':'',
					'overflow':'',
					'position':''
				}
			);
			$this.attr('style', $this.data('originalStyleTag'));
			$c.after($this).remove();
		}
	});
}

$.fn.jScrollPane.defaults = {
	scrollbarWidth : 10,
	scrollbarMargin : 5,
	wheelSpeed : 18,
	showArrows : false,
	arrowSize : 0,
	animateTo : false,
	dragMinHeight : 1,
	dragMaxHeight : 99999,
	animateInterval : 100,
	animateStep: 3,
	maintainPosition: true,
	scrollbarOnLeft: false,
	reinitialiseOnImageLoad: false,
	tabIndex : 0,
	enableKeyboardNavigation: true,
	animateToInternalLinks: false,
	topCapHeight: 0,
	bottomCapHeight: 0,
	observeHash: true
};

// clean up the scrollTo expandos
$(window)
	.bind('unload', function() {
		var els = $.jScrollPane.active; 
		for (var i=0; i<els.length; i++) {
			els[i].scrollTo = els[i].scrollBy = null;
		}
	}
);

})(jQuery);

/* - ++resource++ilb.skin.script/jquery.droplist.js - */
// http://www.literaturfestival.com/portal_javascripts/++resource++ilb.skin.script/jquery.droplist.js?original=1
(function($){var DropList=function(el,settings,callback){var self=this;settings=settings||{};settings.direction=settings.direction||'auto';
function setText(str){self.option.html(str)}
function customScroll(){var h1=settings.height||150;var h2=self.listWrapper.height();if(h2>h1){self.list.css('height',h1+'px').jScrollPane({showArrows:false})}}
function layout(){self.listWrapper.css('width',(self.obj.width-(self.listWrapper.outerWidth(true)-self.listWrapper.width()))+'px');self.option.css('width',(self.obj.width-self.drop.width()-self.option.outerWidth(true))+'px')}
var options2list=function(data){var output='<ul>';data.each(function(){var selected=$(this).attr('selected')?'selected':'';output+='<li class="'+selected+'"><a href="'+$(this).val()+'">'+$(this).text()+'</a></li>\t'});output+='</ul>';return output};self.open=function(){self.listWrapper.show();self.wrapper.addClass('droplist-active');if(settings.direction=='auto'){var distanceFromBottom=(self.select.height()+self.wrapper.offset().top-$(document).scrollTop()-$(window).height()) *-1;var objHeight=self.select.height()+self.listWrapper.height();if(distanceFromBottom<objHeight){self.wrapper.addClass('droplist-up')} else{self.wrapper.removeClass('droplist-up')}} else if(settings.direction=='up'){self.wrapper.addClass('droplist-up')}
$('html').bind('click', function(e){if($(e.target).closest('.droplist').length===0){self.close()}}).bind('keyup', function(e){if(e==null){keycode=event.keyCode} else{keycode=e.which}
if(keycode==27){self.close()}})};self.close=function(){self.listWrapper.hide();self.wrapper.removeClass('droplist-active');$('html').unbind('click').unbind('keyup')};self.set=function(el){var str=$(el).text();setText(str);self.list.find('li').removeClass('selected').filter(el).addClass('selected');if(self.inputHidden.length>0){var val=el.find('a').attr('href');self.inputHidden.attr('value',val)}
self.close();self.obj.trigger('droplistchange',self)};self.get=function(){return self.list.find('.selected:first a').attr('href')};self.tabs=function(){var that=this;that.list.find('li').bind('click', function(){that.set(this);var id=$(this).find('a').attr('href');jQuery(id).removeClass('hide').show().siblings().hide();return false})};self.obj=$(el);self.obj.css('border','none');self.obj.className=self.obj.attr('class');self.obj.name=self.obj.attr('name');self.obj.width=self.obj.width();self.obj.title=self.obj.attr('title');var isInsideForm=false;var wrapperHtml='<div class="'+self.obj.className+'"><div class="droplist-list"></div></div>';self.wrapper=self.obj.removeAttr('class').wrap(wrapperHtml).parent().parent();self.listWrapper=self.wrapper.find('.droplist-list:first');self.list=self.listWrapper.find('ul:first');if(self.list.length===0){isInsideForm=true;var html='';var optgroups=self.listWrapper.find('select:first optgroup');if(optgroups.length>0){html+='<ul>';optgroups.each(function(){var options=$(this).find('option');html+='<li><strong>'+$(this).attr('label')+'</strong>'+options2list(options)+'</li>'});html+='</ul>'} else{var options=self.listWrapper.find('select:first option');html+=options2list(options)}
self.listWrapper.html(html);self.list=self.listWrapper.find('ul:first')}
self.wrapper.prepend('<div class="droplist-value"><a href="#nogo"></a><div></div></div>');if(isInsideForm){self.wrapper.append('<input type="hidden" name="'+self.obj.name+'" value="" />')}
self.select=self.wrapper.find('.droplist-value:first');self.option=self.select.find('div:first');self.drop=self.select.find('a:first');self.inputHidden=self.wrapper.find('input[type=hidden]:first');self.select.bind('click', function(){if(self.listWrapper.is(':hidden')){self.open()} else{self.close()}});if(isInsideForm){self.list.find('a').bind('click', function(){var parent=$(this).parent();self.set(parent);return false})}
layout();if(settings.customScroll){customScroll()}
self.close();var selectedItem=self.list.find('.selected:first');if(selectedItem.length===1){self.set(selectedItem)}
else{self.set(self.list.find('li:first'))}
if(self.obj.title!==''){setText(self.obj.title)}
if(typeof callback=='function'){callback.apply(self)}};$.fn.droplist=function(settings,callback){return this.each(function(){var obj=$(this);if(obj.data('droplist')) return;var instance=new DropList(this,settings,callback);obj.data('droplist',instance)})}})(jQuery);

/* - ++resource++ilb.skin.script/script_custom.js - */
// http://www.literaturfestival.com/portal_javascripts/++resource++ilb.skin.script/script_custom.js?original=1
jQuery(document).ready(safari);jQuery(document).ready(samples);
function safari(){var userAgent=navigator.userAgent.toString().toLowerCase();if((userAgent.indexOf('safari')!=-1)&&(userAgent.indexOf('macintosh')!=-1)&&!(userAgent.indexOf('chrome')!=-1)){jQuery.each(jQuery.browser, function(i){$("body").addClass("safari")})}};
function samples(){var settings={customScroll:true,height:300,direction:'down'}
jQuery('.droplist-by-list').droplist(settings, function(){var that=this;that.list.find('li').bind('click', function(){console.log(this);that.set(this);console.log(that);return false})})};

/* - ++resource++ilb.skin.script/kuputabs.js - */
// http://www.literaturfestival.com/portal_javascripts/++resource++ilb.skin.script/kuputabs.js?original=1
kuputabs={}
kuputabs.idCounter=0;kuputabs.Tab=function(title,open){this.id=null;this.open=open;this.title=title;this.content=jq('<div class="kuputab-content"><!-- Dynamically generated tab --></div>')}
kuputabs.collectTabs=function(){kuputabs.log("Creating tabs");jq("h2.kuputab-tab-definer, h2.kuputab-tab-definer-default").parent().each(function(){var tabs=[];var collecting=false;var curTab=null;var parent=this;kuputabs.log("Scanning field "+jq(parent).attr("id"));jq(this).contents().each(function(){var t=jq(this);kuputabs.log("Walking "+t.attr("id"));if(t.hasClass("kuputab-tab-definer")||t.hasClass("kuputab-tab-definer-default")){var open=t.hasClass("kuputab-tab-definer-default");kuputabs.log("Making tab"+t.text());var tab=new kuputabs.Tab(t.text(),open)
tabs.push(tab)
curTab=tab;t.removeClass("kuputab-tab-definer");t.removeClass("kuputab-tab-definer-default");parent.removeChild(this)} else{if(curTab!=null){parent.removeChild(this);curTab.content.append(this)}}});var container=kuputabs.constructContainer(tabs);jq(parent).append(container)});kuputabs.log("Found tab count:"+kuputabs.idCounter)}
kuputabs.constructContainer=function(tabs){kuputabs.log("Constructing tab container for tabs "+tabs.length);var cont=jq('<div class="kuputab-container"><!-- Dynamically generated tab  container --></div>');var selectors=jq('<ul class="kuputab-selectors"><!-- Dynamically generated tab selectors --></ul>');var i;if(tabs.length==0){return}
for(i=0;i<tabs.length;i++){var tab=tabs[i];var first=(i==0);var last=(i==tabs.length-1);kuputabs.log("Creating tab selector "+tab.title);tab.id=(kuputabs.idCounter++);var classes="kuputab-selector";if(first){classes+=" kuputab-selector-first"}
if(last){classes+=" kuputab-selector-last"}
var clicker=jq("<li></li>");clicker.attr({"class":classes,"id":"kuputab-selector-"+tab.id});var link=jq("<a></a>");var classes;if(tab.open){classes="selected"} else{classes=""}
link.attr({id:"kuputab-link-"+tab.id,href:"#kuputab-content-"+tab.id,"class":classes});link.append("<span>"+tab.title+"</span>");link.click(kuputabs.click);clicker.append(link);selectors.append(clicker)}
cont.append(selectors);for(i=0;i<tabs.length;i++){var tab=tabs[i];var first=(i==0);var last=(i==tabs.length-1);var content=tab.content;content.attr({"id":"kuputab-content-"+tab.id});if(tab.open){} else{tab.content.addClass("hidden")}
cont.append(content)}
return cont}
kuputabs.click=function(e){kuputabs.log("Caught tab selector click event");var elem=jq(e.target);kuputabs.log("Clicked tab "+e.target+" "+elem.get(0).tagName);if(elem.get(0).tagName.toLowerCase()!="a"){elem=elem.parents("a")}
var container=elem.parents(".kuputab-container");var id=elem.attr("id");if(id==null){alert("Invalid tab selector handler "+e.target);return}
id=id.replace(/^kuputab-link-/,"");kuputabs.log("Filtered id "+id);var selectors=container.find("li.kuputab-selector a");var panels=container.find("div.kuputab-content");kuputabs.log("Matches "+selectors.length+" selectors, "+panels.length+" contents");selectors.removeClass('selected');panels.addClass('hidden');var panel=container.find("#kuputab-content-"+id);var selector=container.find("#kuputab-selector-"+id+" a");selector.addClass("selected");panel.removeClass("hidden");return false};kuputabs.init=function(){try{if(document.designMode.toLowerCase()=="on"){return} else{kuputabs.collectTabs()}} catch(e){kuputabs._printStackTrace(e)}}
kuputabs.log=function(msg){if(typeof(console)!="undefined"){if(typeof(console.log)!="undefined"){console.log(msg)}}}
kuputabs._printStackTrace=function(exc){
function print(msg){kuputabs.log(msg)}
print(exc);if(!exc.stack){print('no stacktrace available');return};var lines=exc.stack.toString().split('\n');var toprint=[];for(var i=0;i<lines.length;i++){var line=lines[i];if(line.indexOf('ecmaunit.js')>-1){break};if(line.charAt(0)=='('){line='function'+line};var chunks=line.split('@');toprint.push(chunks)};toprint.reverse();for(var i=0;i<toprint.length;i++){print('  '+toprint[i][1]);print('    '+toprint[i][0])};print()}
jq(kuputabs.init);

