$(function()
	{
	frameShow();
	});

function frameShow()
	{
	jQuery(".frame").children(":last-child").animate({opacity: 1}, 3500)
	.animate({opacity: 0}, 1000, function()
		{
		jQuery(this).clone().prependTo(".frame").css({"opacity": "1", "z-index": "1"});
		jQuery(this).remove();
		frameShow();
		});
	}
