$(function() {
	$('a.lightbox').lightBox(); // Select all links with lightbox class
	// This, or...
});

$(function() {
	$('#image').cycle({
		fx:     'fade',
 			delay:  -200,
 			speed:   800,
  		timeout: 2000,
  		next:   '#image',
  		pause:   1
	});
});

