var
	IE = document.all,
	jobSections = 2;

function jobSection(id) {
	if (getElement("caption_section" + id).className == "on") {
		return;
	}

	IE ? getElement("jobsList").filters[0].apply() : "";

	for (var i = 0; i <= jobSections; i++) {
		getElement("caption_section" + i).className = "";
		getElement("list_section" + i).className = "none";
		if (i == id) {
			getElement("caption_section" + i).className = "on";
			getElement("list_section" + i).className = "";
		}
	}

	IE ? getElement("jobsList").filters[0].play() : "";
}