/**
 * @author warski.com
 * @copyright warski.com
 */
var cBnIdx = 0;
var nBnIdx = -1;
var timeout;
var tSwitch = 10000;

$(document).ready(
function(){ 

 
});

function wSwitchImages() { 
 	bnLst = $('#topImages img');
	for (i = 0; i < bnLst.length; i++) {
		b = bnLst[i];
		if (!$(b).is(":hidden")) {
			cBnIdx = i;
			nBnIdx = i+1;		
		}
	}

	if (nBnIdx == bnLst.length) {
	  nBnIdx =0;
	}
	if (nBnIdx > -1 ) {
	   $(bnLst[cBnIdx]).slideUp(1500);	
	   $(bnLst[nBnIdx]).slideDown(1000);
	   // $(bnLst[cBnIdx]).hide('slow');	
	   // $(bnLst[nBnIdx]).show('slow');

	}

 	if(timeout) {
         clearTimeout(timeout);
	 timeout = null;
	}

        timeout = setTimeout('wSwitchImages()', tSwitch);
		     
 }

timeout = setTimeout('wSwitchImages()', tSwitch);
