function menu_over(when, which) {
	if (when == 'out') {
		document.getElementById(which).style.backgroundImage = 'url(/fileadmin/templates/portal/images/nav/main-separator.gif)';
	} else if (when == 'over') {
		document.getElementById(which).style.backgroundImage = 'none';
	}
}

function search_over(when) {
	if (when == 'out') {
		document.getElementById('s_go').src = '/fileadmin/templates/portal/images/arrow-search.gif';
	} else if (when == 'over') {
		document.getElementById('s_go').src = '/fileadmin/templates/portal/images/arrow-search-over.gif';
	}
}

$(document).ready(function() {
	checkInqType('inquirytype', 'inquiryTypeText', 'inquirytype_other');
});
