var nbuRates = [];nbuRates[0] = '1 грн = <b>0.126</b> $' ;nbuRates[1] = '1 грн = <b>0.099</b> &euro;' ;nbuRates[2] = '1 грн = <b>3.886</b> руб' ;nbuRates[3] = '1 $ = <b>7.908</b> грн' ;nbuRates[4] = '1 $ = <b>0.785</b> &euro;' ;nbuRates[5] = '1 $ = <b>30.732</b> руб' ;nbuRates[6] = '1 &euro; = <b>10.078</b> грн' ;nbuRates[7] = '1 &euro; = <b>1.274</b> $' ;nbuRates[8] = '1 &euro; = <b>39.165</b> руб' ;nbuRates[9] = '1 руб = <b>0.257</b> грн' ;nbuRates[10] = '1 руб = <b>0.033</b> $' ;nbuRates[11] = '1 руб = <b>0.026</b> &euro;' ;var numOfCurrencyRateNbu = 0;
function startNbuCarousel() {
	setInterval("moveNbuCarousel()", 3500);
}
function moveNbuCarousel() {
	if (typeof nbuRates == 'object') {
		if (nbuRates.length > 0) {
			$('#nbuRateBlock').html(nbuRates[numOfCurrencyRateNbu]);
			numOfCurrencyRateNbu = (numOfCurrencyRateNbu + 1) % nbuRates.length;
		}
	}
}
$(document).ready(function() { moveNbuCarousel(); startNbuCarousel(); });