// JavaScript Document

$(document).ready( function() {
	
	$('a[@rel=lightbox]').lightBox();

	$('#s1').cycle({
		fx: 'fade',
		next:   '#s1', 
		timeout: 2500,			
		speed: 800
	});
	
	$('#s2').cycle({		
		fx: 'fade',
		next:   '#s2', 
		timeout: 2500,
		speed: 800
	});
	
	$('#s3').cycle({		
		fx: 'fade',
		next:   '#s3', 
		timeout: 2500,
		speed: 800
		
	});
});
