function __tab_show__ (containerId, tabIndex, banner) {
	oContainer=document.getElementById(containerId);
	oChildren=oContainer.children;
	var iChildren=0;
	var iTabIndex=0;
	for (var i=0; i<oChildren.length; i++) {
		if (oChildren[i].tagName.toLowerCase()=='div' && oChildren[i].id.substring(0, 3).toLowerCase()=='tab') {
			iTabIndex++;
			if (oChildren[i].id=='tab_'+tabIndex) {
				oChildren[i].className='selected_tab';
				document.getElementById('tab_caption_'+tabIndex).className='tab_caption_selected';
				document.getElementById('img_banner_tab').src=banner;
			}
			else {
				oChildren[i].className='tab';
				document.getElementById('tab_caption_'+iTabIndex.toString()).className='tab_caption';
			}
				
		}
	}
		
}


function tab_show (containerId, tabIndex) {
	oContainer=document.getElementById(containerId);
	oChildren=oContainer.children;
	var iChildren=0;
	var iTabIndex=0;
	for (var i=0; i<oChildren.length; i++) {
		if (oChildren[i].tagName.toLowerCase()=='div' && oChildren[i].id.substring(0, 3).toLowerCase()=='tab') {
			iTabIndex++;
			if (oChildren[i].id=='tab_'+tabIndex) {
				oChildren[i].className='selected_tab';
			}
			else {
				oChildren[i].className='tab';
			}
				
		}
	}
		
}



var int=self.setInterval("swap_image()",5000);
var curr_img=0;
var arr_img=Array(rel_path+'App_Theme/images/company.jpg', rel_path+'App_Theme/images/recurring_dep.jpg', rel_path+'App_Theme/images/staffs.jpg', rel_path+'App_Theme/images/nepali_dep.jpg', rel_path+'App_Theme/images/financial.jpg', rel_path+'App_Theme/images/fixed_deposit.jpg');


function swap_image()
{
    if (mouseover_slideshow==false) {
        if (curr_img==5)
            curr_img=0;
        else
            curr_img++;
            
        document.getElementById("slideshow").src=arr_img[curr_img];       
    }
}

