function changeBg(param) {

	document.getElementById(param).style.background = 'url(images/menu_index/' + param + '_hover.jpg)';
	document.getElementById(param).style.backgroundPosition = 'bottom';
	document.getElementById(param).style.backgroundRepeat = 'no-repeat';
}



function changeBack(param) {

	document.getElementById(param).style.background = 'url(images/menu_index/' + param + '.jpg)';
	document.getElementById(param).style.backgroundPosition = 'bottom';
	document.getElementById(param).style.backgroundRepeat = 'no-repeat';
}
