$(document).ready(function() {

	$(function() {
		$('.fadein img:gt(0)').hide();
		setInterval(function() {
			$('.fadein :first-child').fadeOut().next('img').fadeIn().end().appendTo('.fadein');
		}, 3000);
	});
	$('.about-div a').lightBox();
	// Select all links in object with gallery ID

});

