	i=0;

	$(document).ready(function(){
		$("a[rel^='lightbox']").prettyPhoto({theme:'facebook'});
		hhh();
		});
		
	function hhh() {
		$('.img').css({opacity: 0.0});
		i++;
		$('#gallery').fadeIn();
		ggg();
	}
	lst = '';

	function ggg() {
		
		$('.img').each( function(index) {
			
			if( $(this).attr('id') == 'img'+i ) {
				$(this).animate({opacity: 1.0}, 800);
				}
			else	
				{
				if( $(this).attr('id') == lst ) {
					$(this).animate({opacity: 0.0}, 800);
					}
				}
			
			} );
		lst = 'img'+i;
		i++;
		if( i>8 ) i=1;
		window.setTimeout("ggg()", 3000);
	}

