function gallerize(ident, title) 
{
	gallerized = $(ident);
	if( title )
		gallerized_title = $(title);
	else
		gallerized_title = null;
	gdx = 0;
	gallerized.find("img").addClass("bottom");
	end_next();
}

function load_next()
{
	gdx++;
	if( gdx >= photos.length ) gdx = 0;
	var photo = photos[gdx]["Photo"];
	$("<img>")
		.load(show_next)
		.addClass("bottom")
		.attr("src", photo.original )
		.attr("width",photo.width )
		.attr("height",photo.height )
		.appendTo(gallerized);
}

function show_next() 
{
	gallerized.find(".top").animate({"opacity":0},700,end_next);
	if( gallerized_title ) {
		if( photos[gdx]["Photo"].url )
			gallerized_title.html( "<a href='"+photos[gdx]["Photo"].url+"'>"+photos[gdx]["Photo"].title+"</a>" );
		else
			gallerized_title.text(photos[gdx]["Photo"].title);
	}
}

function end_next()
{
	gallerized.find(".top").remove().end()
	gallerized.find(".bottom").removeClass("bottom").addClass("top");
	setTimeout(load_next,7000);
}

