
function ewOver(id)
{
	document.getElementById('ew_left_'+id).className = "ew_left_sel";
	document.getElementById('ew_middle_'+id).className = "ew_middle_sel";
	document.getElementById('ew_right_'+id).className = "ew_right_sel";
	document.getElementById('ew_img_'+id).className = id+"_sel";
	document.getElementById('ew_text_'+id).className = "ew_text_sel";
}

function ewOut(id)
{
	document.getElementById('ew_left_'+id).className = "ew_left";
	document.getElementById('ew_middle_'+id).className = "ew_middle";
	document.getElementById('ew_right_'+id).className = "ew_right";
	document.getElementById('ew_img_'+id).className = id;
	document.getElementById('ew_text_'+id).className = "ew_text";	
}	

