// JavaScript Document
function ch_spotlight(a){
	for(i=1;i<=4;i++){
		if(i==a){
			document.getElementById('spotlight_'+i).style.display="block";
			document.getElementById('spotlight_ImgL_'+i).style.backgroundImage="url('../images/channelH_curve1.gif')";
			document.getElementById('spotlight_ImgR_'+i).style.backgroundImage="url('../images/channelH_curve2.gif')";
			document.getElementById('spotlight_ImgH_'+i).style.backgroundImage="url('../images/channelH_bg.gif')";
			document.getElementById('spotlight_ImgH_'+i).className="spotlightOn";			
		}
		else{
			document.getElementById('spotlight_'+i).style.display="none";
			document.getElementById('spotlight_ImgL_'+i).style.backgroundImage="url('../images/channel_bg.gif')";
			document.getElementById('spotlight_ImgR_'+i).style.backgroundImage="url('../images/channel_bg.gif')";
			document.getElementById('spotlight_ImgH_'+i).style.backgroundImage="url('../images/channel_bg.gif')";
			document.getElementById('spotlight_ImgH_'+i).className="spotlightOff";
		}
	}	
}