// annkatrinkampmeyer global.js

// cufon replace ...
	Cufon.replace('h1#logo, h2, h3, ul#menu',{
		hover: true
	});	

$(document).ready(function(){

// layout fixes - no dotted outline on hover, focus
	$('a').focus(function() {
  		$(this).blur();
	});	
	
// mosaic - fancyzoom
	$("a.tozoom").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	300, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});

// slideshow	
	$('#frontslideshow').cycle({
		fx: 'fade',
		speed: 1500,
		timeout: 4000,
		pause:	1
	});
	
});
