// JavaScript Document

//window.addEvent('domready', selectabout() );

function selectinfo(button) {
	$('infoWhat').style.backgroundColor= '#CCCCFF';	
	$('infoHow').style.backgroundColor= '#CCCCFF';	
	$('infoModel').style.backgroundColor= '#CCCCFF';
	button.style.backgroundColor= '#EEEEFF';
	$('infoWhatContent').style.display = 'none';
	$('infoHowContent').style.display = 'none';
	$('infoModelContent').style.display = 'none';
	var bContent = button.id+'Content';
	$(bContent).style.display = 'block';
}

function selectabout() {
	$('infoWhat').style.backgroundColor= '#EEEEFF';
	$('infoWhatContent').style.display = 'block';
}

function checkhot(bid) {
	/*$('infocontent').innerHTML += bid.id;*/
	if ($(bid.id).style.backgroundColor == '#CCCCFF') {
		$(bid.id).style.backgroundColor = '#9999FF';
	}
}

function checkcold(bid) {
	if ($(bid.id).style.backgroundColor == '#CCCCFF') {
		$(bid.id).style.backgroundColor = '#CCCCFF';
	}
}