$(document).ready(function() {
	// suckerfish dropdowns
	$('ul.sf-menu').superfish({ 
		delay:       1000,
		animation:   {opacity:'show',height:'show'},
		speed:       'normal',
		autoArrows:  false,
		dropShadows: false
	});
	$('a.fancybox').fancybox();
});

var fk = {
	home :
	{
		init : function() {
			// homepage feature
			$('#feature').before('<ul id="thumbs">').cycle({
				pager:  '#thumbs',
				pause:  1,
				slideExpr: 'img',
				pagerAnchorBuilder: function(idx, slide) {
					return '<li><a href="#"><img src="' + slide.src.replace('img/feature','img/feature/thumbs') + '" width="100" height="100" /></a></li>';
				}
			});
			// homepage scrollbars
			$('#newsBox .scroll').jScrollPane({
				verticalDragMinHeight: 46,
				verticalDragMaxHeight: 46
			});
			var api = $('#twitterBox').jScrollPane().data('jsp');
			$('#twitterBox .scroll').tweetable({username: 'factorykahne', time: true, limit: 20, replies: false, position: 'append'});
		}
	},
	sub : 
	{
		init : function() {
			// calc gallery size
			var items = $('#gallery ul li').length;
			$('#gallery ul').css('width',items*100);
			// gallery scrollbars
			$('#gallery').jScrollPane({
				horizontalDragMinWidth: 46,
				horizontalDragMaxWidth: 46
			});
			// fancybox
			$('#gallery li a').not('.iframe').fancybox();
			$('#gallery li a.iframe').fancybox({
				'type': 'iframe',
				'scrolling': 'no'
			});
			$('#news').jScrollPane({
				verticalDragMinHeight: 46,
				verticalDragMaxHeight: 46
			});
		}
	}
}
