$(document).ready(function() {
	
	$('.mainin img:gt(0)').hide();
	setInterval(function(){
		$('.mainin :first-child').fadeOut().next('img').fadeIn().end().appendTo('.mainin');
	}, 3000);
	
	$('#logos img:gt(0)').hide();
	setInterval(function(){
		$('#logos :first-child').fadeOut().next('img').fadeIn().end().appendTo('#logos');
	}, 3000);
	
	$('.fadein img:gt(0)').hide();
	setInterval(function(){
		$('.fadein :first-child').fadeOut().next('img').fadeIn().end().appendTo('.fadein');
	}, 5000);
	
	$("a.gallery").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	200, 
		'speedOut'		:	200
	});
	
});
