// JavaScript Document

$(document).ready(function() {
	Cufon.replace('h2, h3, h4, h5, p#sitemap-headline', { fontFamily: 'arno-pro' });

	$("a[rel=lightbox]").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	300, 
		'overlayShow'	:	true
	});
		
	$('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
	$('ul#navi').superfish();
	
	$('ul#navi .inactive').hover(function() {
		$(this).stop().animate({
			marginLeft: -16
		}, "fast");
	}, function() {
		$(this).stop().animate({
			marginLeft: 0
		}, "fast");
	});
});
