// image slide show
$(window).load(function() {
	$('#s1').fadeIn(1000);
	$('#s1').cycle({ 
		fx:    'fade',
		speed:  2000,
		timeout: 5000
	});

	$('#gallery').removeClass('loading');
});

// image slide show
$(window).load(function() {
	$('#s2').fadeIn(1000);
	$('#s2').cycle({ 
		fx:    'fade',
		speed:  2000,
		timeout: 5000
	});

	$('#gallery2').removeClass('loading');
});


