// JavaScript Document

function change1(id){
	document.getElementById(id).style.backgroundColor = '#FFFFFF';
	var atext = id+'_title';
	document.getElementById(atext).style.color = '#132C50';
	var ptext = id+'_price';
	document.getElementById(ptext).style.backgroundColor = '#D2E0F4';
	document.getElementById(ptext).style.color = '#132C50';
}
function change2(id){
	document.getElementById(id).style.backgroundColor = '#C4D7ED';
	var atext = id+'_title';
	document.getElementById(atext).style.color = '#132C50';
	var ptext = id+'_price';
	document.getElementById(ptext).style.backgroundColor = '#132C50';
	document.getElementById(ptext).style.color = '#ffffff';
}
function change3(id){
	document.getElementById(id).style.backgroundColor = '#ABC8E2';
	var atext = id+'_title';
	document.getElementById(atext).style.color = '#132C50';
	var ptext = id+'_price';
	document.getElementById(ptext).style.backgroundColor = '#132C50';
	document.getElementById(ptext).style.color = '#ffffff';
}
function change4(id){
	document.getElementById(id).style.backgroundColor = '#375D81';
	var atext = id+'_title';
	document.getElementById(atext).style.color = '#ffffff';
	var ptext = id+'_price';
	document.getElementById(ptext).style.backgroundColor = '#D2E0F4';
	document.getElementById(ptext).style.color = '#132C50';
}
function change5(id){
	document.getElementById(id).style.backgroundColor = '#183152';
	var atext = id+'_title';
	document.getElementById(atext).style.color = '#ffffff';
	var ptext = id+'_price';
	document.getElementById(ptext).style.backgroundColor = '#D2E0F4';
	document.getElementById(ptext).style.color = '#132C50';
}

function radioChange1(){
	document.getElementById('searchWord').style.borderColor = '#132C50';
}

function radioChange2(){
	document.getElementById('searchWord').style.borderColor = '#82AAB4';
}

function radioChange3(){
	document.getElementById('searchWord2').style.borderColor = '#132C50';
}

function radioChange4(){
	document.getElementById('searchWord2').style.borderColor = '#82AAB4';
}

var flag = false;
function check(){
	if(flag){ return false;}
	flag = true;
	return true;
}
