var carouselSelection=0;var carouselTimer;var carouselXML='/xml/bnic-prizes.xml';var timerInterval=8000;var showImage=true;var totalElem=2;function startCarousel(b){if(b){totalElem=b}$('.navSelect a').click(function(){var a=$(this).html();a=a-1;clearTimeout(carouselTimer);carouselSelection=a;swapContent()});swapContent()}function updateCarouselNav(a){$(".carouselNavDiv a").removeClass();if(a==0)a=totalElem;$("#cn"+a).addClass('clSelected')}function swapContent(){var e;var f;var g;var h=0;if(showImage!=false){$(".carouselContentDiv").fadeTo('fast',0)}else{$.get(carouselXML,function(d){$(d).find('entry').each(function(){var a=$(this);if(h==(carouselSelection%totalElem)){f=a.find('type').text();g=a.find('url').text();updateCarouselNav(carouselSelection%totalElem);if(f=="image"){var b=a.find('link').text();var c=a.find('alt').text();e='<a href="'+b+'" title="'+c+'">'+'<img src="'+g+'" alt="'+c+'" border="0" />'+'</a>'}}h++});if(f=="html"){$(".carouselContentDiv").empty().fadeTo("normal",1).load(g)}else{$(".carouselContentDiv").empty().fadeTo("normal",1).html(e)}})}if(showImage==false){showImage=true;carouselTimer=setTimeout('swapContent()',timerInterval)}else{showImage=false;carouselSelection++;carouselTimer=setTimeout('swapContent()',timerInterval*.05)}}