// JavaScript Document

$(document).ready(function() {
	Cufon.replace('h2, h3, h4, h5, p.team', { fontFamily: 'lobster' });

	$("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...
	});
	
});
