/* ÓÒ²àÀ¸ÏÂÀ­ÁÐ±í */
window.onload = function() {
	var types1 = document.getElementById("sidebarSuper");
	var types2 = document.getElementById("sidebarResource");
	var types3 = document.getElementById("sidebarClient");
	var img1 = document.getElementById("menu1");
	var img2 = document.getElementById("menu2");
	var img3 = document.getElementById("menu3");
	
	img1.onclick = function() {
		funShow("sidebarSuper");
		funHide('sidebarResource');
		funHide('sidebarClient');
		img1.style.backgroundImage = "url(wp-content/themes/redbanana.cn/images/sidebar_li_up.jpg)";
		img2.style.backgroundImage = "url(wp-content/themes/redbanana.cn/images/sidebar_li_down.jpg)";
		img3.style.backgroundImage = "url(wp-content/themes/redbanana.cn/images/sidebar_li_down.jpg)";
	}
	img2.onclick = function() {
		funShow("sidebarResource");
		funHide("sidebarSuper");
		funHide("sidebarClient");
		img1.style.backgroundImage = "url(wp-content/themes/redbanana.cn/images/sidebar_li_down.jpg)";
		img2.style.backgroundImage = "url(wp-content/themes/redbanana.cn/images/sidebar_li_up.jpg)";
		img3.style.backgroundImage = "url(wp-content/themes/redbanana.cn/images/sidebar_li_down.jpg)";
	}
	img3.onclick = function() {
		funShow("sidebarClient");
		funHide("sidebarSuper");
		funHide("sidebarResource");
		img1.style.backgroundImage = "url(wp-content/themes/redbanana.cn/images/sidebar_li_down.jpg)";
		img2.style.backgroundImage = "url(wp-content/themes/redbanana.cn/images/sidebar_li_down.jpg)";
		img3.style.backgroundImage = "url(wp-content/themes/redbanana.cn/images/sidebar_li_up.jpg)";
	}
}
