// JavaScript Document
// manjographics / famefabrik / compete court

$(document).ready(function(){
		
	$('#slideshow img:first-child').addClass('active');
	$('.active').fadeIn('1000', function() {  }).next().addClass('nextactive');
	setInterval("fadeit()", 5000);

	
});
	
//count that shit up			   	
var clicks = 1;
	
function fadeit() { 
	
	var counter = $('#slideshow img').size();
	
	if (clicks != counter) {
	$('.nextactive').fadeIn('slow', function() {  }).next().addClass('nextactive')
	clicks++;
	$('#info').text(clicks); $('#info2').text(counter);
	}
	
	else {
	clicks = 1;
	$('.nextactive').fadeOut('slow', function() {  }).removeClass();
	
	$('.active').next().addClass('nextactive');
	
	$('#info').text(clicks); $('#info2').text(counter);
	}
			
}



