// JavaScript Document

function show_nav(num)
{
	for(var i=1; i<9;i++)
	{
		var hiddDiv_name='sub_menu0'+i;
		var hiddDiv=document.getElementById(hiddDiv_name);
		hiddDiv.style.display="none";
	}
	var showDiv_name= 'sub_menu0'+num;
	var showDiv=document.getElementById(showDiv_name);
	showDiv.style.display="block";
}

function hidd_nav(num)
{
   
	var hiddDiv_name= 'sub_menu0'+num;
	var hiddDiv=document.getElementById(hiddDiv_name);
	hiddDiv.style.display="none";

}


function show_banner(num)
{
	for(var i=1;i<4;i++)
	{
		var hiddNav_name='banner_nav0'+i;
		var hiddNav=document.getElementById(hiddNav_name);
		hiddNav.style.backgroundPosition="top";
	}
	var showNav_name= 'banner_nav0'+num;
	var showNav=document.getElementById(showNav_name);
	showNav.style.backgroundPosition="bottom";
	
	var showPic=document.getElementById("bannerImg");
	
	showPic.src="images/banner0"+num+".jpg";
	

}

function show_guid(title_name,con_name,select_id,con_count)
{
	for(var i=1;i<=con_count;i++)
	{
		var hidd_title_id=title_name+i;
		document.getElementById(hidd_title_id).style.backgroundImage="none";
		
		var hidd_con_id=con_name+i;
		document.getElementById(hidd_con_id).style.display="none";
    }
	var show_title_id=title_name+select_id;
	document.getElementById(show_title_id).style.backgroundImage="url(images/guide_title_hover_.jpg)";
	
	var show_con_id=con_name+select_id;
	document.getElementById(show_con_id).style.display="block";
	
}
function show_case(title_name,con_name,select_id,con_count)
{
	for(var i=1;i<=con_count;i++)
	{
		var hidd_title_id=title_name+i;
		document.getElementById(hidd_title_id).style.color="#323232";
		document.getElementById(hidd_title_id).style.backgroundImage="none";
		
		var hidd_con_id=con_name+i;
		document.getElementById(hidd_con_id).style.display="none";
    }
	var show_title_id=title_name+select_id;
	document.getElementById(show_title_id).style.color="#fff";
	document.getElementById(show_title_id).style.backgroundImage="url(images/succes_case_ico.jpg)";
	
	var show_con_id=con_name+select_id;
	document.getElementById(show_con_id).style.display="block";
}

function show_menu(li_name,show_id,li_count)
{
	for(var i=1;i<=li_count;i++)
	{
		var hidd_li_id=li_name+i;
		document.getElementById(hidd_li_id).style.backgroundPosition="bottom";
    }
	var show_li_id=li_name+show_id;
	document.getElementById(show_li_id).style.backgroundPosition="top";
}
