$(document).ready(function(){
	
	//fancybox
	$("a.fancy").fancybox({
		'transitionIn'	:	'easeOutBounce',
		//'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	150, 
		'overlayShow'	:	false
	});
	
	//bubble
	$('.pitch').append('<div class="apendix">&nbsp;</div>');
	$('.bubble').hover(function() {
		var pitch = $(this).attr('rel');
		$('#'+ pitch).delay(200).animate({ 'opacity': 'toggle'}, { 'duration': 300 });
	});
	
});
