jQuery(document).ready(function() {
	jQuery('.homeGallery li').css({
		'left' : '0',
		'position' : 'absolute',
		'top' : '0'
	});

	jQuery('.homeGallery li').hide();
	jQuery('.homeGallery li:first-child').show();

	var galleryTicker = setInterval('galleryTicker()', 3000);
});

function galleryTicker() {
	jQuery('.homeGallery li:first-child').fadeOut('fast', function() {
		jQuery('.homeGallery li:first-child').next().fadeIn('fast');
		jQuery('.homeGallery li:first-child').appendTo('.homeGallery');
	});
}
