// JavaScript Document

function changeColorOver(thisObj)

{
	thisObj.parentNode.getElementsByTagName('div')[0].className = 'white';
}

function changeColorOut(thisObj)
{
		thisObj.parentNode.getElementsByTagName('div')[0].className = 'gray';
}

function calc()
{
	var hosting_type = document.getElementById('hosting_type');
	var term = document.getElementById('term');
	
	if(hosting_type.value == 'mini' && term.value == '1' || hosting_type.value == 'mini' && term.value == '6') 
	{
		term.value = 12;
		alert('Минимальный срок подключения пакета "Мини" - 12 месяцев');
	}
}
