
$(function () {

$('.cycle').cycle({
	  fx:      'scrollHorz',
	  timeout:  0,
      easing:  'backinout',
	  next: '.next', 
	  prev: '.back', 
	  
	  sync: true,
	  pause: true
	});
	
	//Fancy Box
	$(".iframe, .box").fancybox();
	
	$(".web").fancybox({
		'width'				: '90%',
		'height'			: '95%',
		'autoScale'			: true,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'overlayColor'		: '#000',
		'overlayOpacity'	: '0.7',
		'type'				: 'iframe'
	})
	/*$(".box").fancybox({
		'width'				: '60%',
		'autoScale'			: true,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'overlayColor'		: '#000',
		'overlayOpacity'	: '0.7',
		'type'				: 'iframe'
	});*/

});


