function submitOver(a, b, c, small) {
	a = ElementGetById(a);
	b = ElementGetById(b);
	c = ElementGetById(c);

	if (small == 1) {
		a.style.backgroundImage = "url('images/submit/blue_left_small.png')";
		b.style.backgroundImage = "url('images/submit/blue_center_small.png')";
		c.style.backgroundImage = "url('images/submit/blue_right_small.png')";
	} else {
		a.style.backgroundImage = "url('images/submit/blue_left.png')";
		b.style.backgroundImage = "url('images/submit/blue_center.png')";
		c.style.backgroundImage = "url('images/submit/blue_right.png')";
	}	
}

function submitOut(a, b, c, small) {
	a = ElementGetById(a);
	b = ElementGetById(b);
	c = ElementGetById(c);

	if (small == 1) {
		a.style.backgroundImage = "url('images/submit/gray_left_small.png')";
		b.style.backgroundImage = "url('images/submit/gray_center_small.png')";
		c.style.backgroundImage = "url('images/submit/gray_right_small.png')";
	} else {
		a.style.backgroundImage = "url('images/submit/gray_left.png')";
		b.style.backgroundImage = "url('images/submit/gray_center.png')";
		c.style.backgroundImage = "url('images/submit/gray_right.png')";
	}
}


