jQuery(document).ready(function($) {
	var all_images = $( '#tv-images img' ).length;
	
	if ( all_images < 1 ) return;
	
	var zindex = all_images;
	$( '#tv-images img' ).each( function(){
		$( this ).css( { 'z-index': zindex } );
		zindex--;
	});
	
	start_images_slides( all_images );
} );


function start_images_slides( num ) {
	var index = 0;
	var next;
	var interval = window.setInterval( function(){
		
		if ( index == num ) index = 0;
		
		next = index + 1;
		
		if ( next == num ) next = 0;
		
		$( "#tv-images img:eq(" + index + ")" ).fadeOut(1000);
		$( "#tv-images img:eq(" + next + ")" ).fadeIn(1000);
		
		index++;
		
	}, 3000);
}
