/* $(document).ready(function(){
		$(".examples").pngFix();
	});*/
$(document).ready(function(){
		$('.examples').pngFix();
	});


var t = n = count = 0;
$(function(){
	count = $("#play_list img").size();
	$("#play_list img:not(:first-child)").hide();
	$("#play_text li").click(function() {
		var i = $(this).text() - 1;
		n = i;
		if (i >= count) return;
		$("#play_list img").fadeOut(500).parent().children().eq(i).fadeIn(1000);
	});
	t = setInterval("showAuto()", 5000);
})

function showAuto()
{
	n = n >= (count - 1) ? 0 : n + 1;
	$("#play_text li").eq(n).trigger('click');
}