$('#deff').jqFancyTransitions({ position: 'curtain' });

		$('#effCurtainAlternate').click( function(){
			$('#deff').jqFancyTransitions({ position: 'curtain', direction: 'alternate' });
			$('#positionDyn').html('curtain');
			$('#directionDyn').html('alternate');
		});

		$('#effFountainTop').click( function(){
			$('#deff').jqFancyTransitions({ position: 'top', direction: 'fountain' });
			$('#positionDyn').html('top');
			$('#directionDyn').html('fountain');
		});	

		$('#effRandomTop').click( function(){
			$('#deff').jqFancyTransitions({ position: 'top', direction: 'random' });
			$('#positionDyn').html('random');
			$('#directionDyn').html('top');
		});	

		$('#effLeftTop').click( function(){
			$('#deff').jqFancyTransitions({ position: 'top', direction: 'left' });
			$('#positionDyn').html('left');
			$('#directionDyn').html('top');
		});	

		$('#effRightBottom').click( function(){
			$('#deff').jqFancyTransitions({ position: 'bottom', direction: 'right' });
			$('#positionDyn').html('right');
			$('#directionDyn').html('bottom');
		});			

		$('.eComb').click( function(){
			$('#eComb').show();
			$('#eEff').hide();
			$('.eComb').removeClass('exampleActive');
			$('.eEff').removeClass('exampleActive');			
			$(this).addClass('exampleActive');
		});	

		$('.eEff').click( function(){
			$('#eComb').hide();
			$('#eEff').show();
			$('.eEff').removeClass('exampleActive');
			$('.eComb').removeClass('exampleActive');			
			$(this).addClass('exampleActive');			
		});	

		$('#effWave').click( function(){
			$('#deff').jqFancyTransitions({ effect: 'wave' });
			$('#effDyn').html('wave');
		});		

		$('#effZipper').click( function(){
			$('#ft-title-example, .ft-example').remove();
			$('#deff').jqFancyTransitions({ effect: 'zipper' });
			$('#effDyn').html('zipper');
		});		

		$('#effCurtain').click( function(){
			$('#deff').jqFancyTransitions({ effect: 'curtain' });
			$('#effDyn').html('curtain');
		});	
