$(document).ready(function(){
	//font management
	Cufon.replace('h1, h2, h3, #menu ul li a, .breadcrumb, #footer-menu ul li a, #nav ul li a, .read-more, div#contact_fields label');
	
	var galleryPhoto = $(".gallery-photo"); 
	var galleryVideo = $(".gallery-video"); 
	var slider       = $("#s3slider");  

	if ( galleryPhoto[0] ) {						
 	   $(galleryPhoto).fancybox({
		'padding'		: 3,
		'width'			: 830,
		'height'		: 600,
		'speedIn'		: 500, 
		'speedOut'		: 200, 
        	'autoScale'     	: false,
	        'transitionIn'		: 'elastic',
		'transitionOut'		: 'fade',
		'type'			: 'iframe',
		'hideOnOverlayClick'	: false,
		'overlayOpacity'	: 0.8,
		'centerOnScroll'	: true,
		'titleShow'		: true,
		'titlePosition'		: 'outside',
		'overlayColor'		: '#141414'
	   });
	};
	
	if ( galleryVideo[0] ) { 	
	    $(galleryVideo).fancybox({
		'padding'		: 3,
		'height'		: 410,
		'width'			: 670,
        	'autoScale'     	: false,
		'speedIn'		: 400, 
		'speedOut'		: 100, 
	        'transitionIn'		: 'elastic',
		'transitionOut'		: 'fade',
		'type'			: 'iframe',
		'hideOnOverlayClick'	: false,
		'overlayOpacity'	: 0.8,
		'centerOnScroll'	: true,
		'titleShow'		: true,
		'titlePosition'		: 'outside',
		'overlayColor'		: '#141414'
	    });
	};
	
	//front page slider thingy
	if ( slider[0] ) {  
		$('#s3slider').s3Slider({
		      timeOut: 6000
	   	});
	};
   	
  // console.log();
})



	
