var shopBanners = new Array();
var curShopBannerPos = -1;
var curShopBannerDir = 1;
var curShopBannerRotate = 1;
var curShopBannerTimp = 1000;
function rotateBanners(){
	pos = (curShopBannerPos+curShopBannerDir)%shopBanners.length;
	if(pos < 0) pos = shopBanners.length - 1;
	//fac rotatie
	if(curShopBannerRotate) loadBanner(pos);
	setTimeout('rotateBanners('+(typeof(direction)!='undefined'?direction:'')+')', curShopBannerTimp);
}					
function goToBanner(position){
	loadBanner(position);
	curShopBannerRotate = 0;
}
function loadBanner(position){
	if(typeof(position) != 'undefined') curShopBannerPos = position;
	//for(var i = 0; i < shopBanners.length; i++) document.getElementById('bnr_a_'+i).className = (i==curShopBannerPos?'bb_sel':'');
	document.getElementById('bnr_a').href = shopBanners[curShopBannerPos][1].length>0?shopBanners[curShopBannerPos][1]:'javascript:void(0);';
	document.getElementById('bnr_img').src = 'categorii_bannere/'+shopBanners[curShopBannerPos][0];
}
