// JavaScript Document

function ColorChange(color){
	
	if(color == 'pink'){
		document.getElementById("gray").style.backgroundImage = "url(/images/top/color/color_gray.gif)";
		document.getElementById("pink").style.backgroundImage = "url(/images/top/color/color_pink_ro.gif)";
		document.getElementById("blue").style.backgroundImage = "url(/images/top/color/color_blue.gif)";
		document.getElementById("orange").style.backgroundImage = "url(/images/top/color/color_orange.gif)";
		document.getElementById("green").style.backgroundImage = "url(/images/top/color/color_green.gif)";
		
	}
	if(color == 'gray' || color == 'undefined'){
		document.getElementById("gray").style.backgroundImage = "url(/images/top/color/color_gray_ro.gif)";
		document.getElementById("pink").style.backgroundImage = "url(/images/top/color/color_pink.gif)";
		document.getElementById("blue").style.backgroundImage = "url(/images/top/color/color_blue.gif)";
		document.getElementById("orange").style.backgroundImage = "url(/images/top/color/color_orange.gif)";
		document.getElementById("green").style.backgroundImage = "url(/images/top/color/color_green.gif)";
	}
			
	if(color == 'orange'){
		document.getElementById("gray").style.backgroundImage = "url(/images/top/color/color_gray.gif)";
		document.getElementById("pink").style.backgroundImage = "url(/images/top/color/color_pink.gif)";
		document.getElementById("blue").style.backgroundImage = "url(/images/top/color/color_blue.gif)";
		document.getElementById("orange").style.backgroundImage = "url(/images/top/color/color_orange_ro.gif)";
		document.getElementById("green").style.backgroundImage = "url(/images/top/color/color_green.gif)";
	}
	if(color == 'blue'){
		document.getElementById("gray").style.backgroundImage = "url(/images/top/color/color_gray.gif)";
		document.getElementById("pink").style.backgroundImage = "url(/images/top/color/color_pink.gif)";
		document.getElementById("blue").style.backgroundImage = "url(/images/top/color/color_blue_ro.gif)";
		document.getElementById("orange").style.backgroundImage = "url(/images/top/color/color_orange.gif)";
		document.getElementById("green").style.backgroundImage = "url(/images/top/color/color_green.gif)";
	}
	if(color == 'green'){
		document.getElementById("gray").style.backgroundImage = "url(/images/top/color/color_gray.gif)";
		document.getElementById("pink").style.backgroundImage = "url(/images/top/color/color_pink.gif)";
		document.getElementById("blue").style.backgroundImage = "url(/images/top/color/color_blue.gif)";
		document.getElementById("orange").style.backgroundImage = "url(/images/top/color/color_orange.gif)";
		document.getElementById("green").style.backgroundImage = "url(/images/top/color/color_green_ro.gif)";
	}

}

function loadCookie(loadValue){
　　if(loadValue){
　　　　var c_data = document.cookie + ";";
　　　　c_data = unescape(c_data);
　　　　var n_point = c_data.indexOf(loadValue); 
　　　　var v_point = c_data.indexOf("=",n_point) + 1; 
　　　　var end_point = c_data.indexOf(";",n_point); 
　　　　if(n_point > -1){
　　　　　　c_data = c_data.substring(v_point,end_point);
　　　　　　return c_data;
　　　　}
　　}
}

function setColor(){
	styleColor = new Array();
	styleColor = loadCookie("style").split("style_");
	ColorChange(styleColor[1]);
}

