﻿/********************************************************
* Simple gallery function								*
* Author: Björn Hall ~Celebration studios~				*
* Author url: http://celebrationstudios.se				*
********************************************************/

$('.gallery').hide();
$(document).ready(function() {
	$(function(){
		$('.gallery').show();
		$('.gallery img:gt(0)').hide();
		setInterval(function(){
		  $('.gallery :first-child').fadeOut(2500)
			 .next('img').fadeIn(2500)
			 .end().appendTo('.gallery');}, 
		  3500);
	});
});

