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



		$('#effCurtainAlternate').click( function(){

			$('#example').jqFancyTransitions({ position: 'curtain', direction: 'alternate' });

			$('#positionDyn').html('curtain');

			$('#directionDyn').html('alternate');

		});



		$('#effFountainTop').click( function(){

			$('#ft-title-example, .ft-example').remove();

			$('#example').jqFancyTransitions({ position: 'top', direction: 'fountain' });

			$('#positionDyn').html('top');

			$('#directionDyn').html('fountain');

		});	



		$('#effRandomTop').click( function(){

			$('#ft-title-example, .ft-example').remove();

			$('#example').jqFancyTransitions({ position: 'top', direction: 'random' });

			$('#positionDyn').html('random');

			$('#directionDyn').html('top');

		});	



		$('#effLeftTop').click( function(){

			$('#ft-title-example, .ft-example').remove();

			$('#example').jqFancyTransitions({ position: 'top', direction: 'left' });

			$('#positionDyn').html('left');

			$('#directionDyn').html('top');

		});	



		$('#effRightBottom').click( function(){

			$('#ft-title-example, .ft-example').remove();

			$('#example').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(){
			$('#ft-title-example, .ft-example').remove();
			$('#example').jqFancyTransitions({ effect: 'wave' });
			$('#effDyn').html('wave');
		});		
		$('#effZipper').click( function(){
			$('#ft-title-example, .ft-example').remove();
			$('#example').jqFancyTransitions({ effect: 'zipper' });
			$('#effDyn').html('zipper');
		});		
		$('#effCurtain').click( function(){

			$('#ft-title-example, .ft-example').remove();

			$('#example').jqFancyTransitions({ effect: 'curtain' });

			$('#effDyn').html('curtain');
		});	
