window.onload = function()
{
	var s = document.getElementsByName('product_options[Color]');
	s[0].onchange = function()
	{
		onFacultyShirtClChange();
	}
	onFacultyShirtClChange();
}
function onFacultyShirtClChange()
{
	var d = document.getElementById('div_cl');
	var s = document.getElementsByName('product_options[Color]')[0];
	if (s.selectedIndex == 0) { d.style.background='#e33f26'; } else
	if (s.selectedIndex == 1) { d.style.background='#f4d98a'; } else
	if (s.selectedIndex == 2) { d.style.background='#744595'; } else
	if (s.selectedIndex == 3) { d.style.background='#5d83b0'; } 
}
function addFacultyShirtClDiv()
{
	document.write('<div id="div_cl" style="margin: 0 8px 0 0; width: 16px; height: 16px; float: right;"></div>');
}
