function ocpm(el)
{
	if(!document.getElementById('prt_a'+el)) return 0;
	if(!document.getElementById('prt_m'+el)) return 0;
	var prta = document.getElementById('prt_a'+el);
	var prtm = document.getElementById('prt_m'+el);
	if(prta.className=='main-razdel-open')
	{
		prta.className='main-razdel-close';
		prtm.style.display='none';
	}
	else
	{
		prta.className='main-razdel-open';
		prtm.style.display='';
	}
}

function check_feedbackfrm()
{
	if(!document.getElementById('feedNAME').value) { alert('Введите Ваше имя'); return false; }
	if(!document.getElementById('feedMAIL').value) { alert('Введите Ваш адрес электронной почты'); return false; }
	if(!document.getElementById('feedTEL').value) { alert('Введите номер Вашего телефона'); return false; }
	if(!document.getElementById('feedMSG').value) { alert('Введите текст сообщения'); return false; }
	return true;
}

function mycarousel_itemLoadCallback(carousel, state)
{
    for (var i = carousel.first; i <= carousel.last; i++) {
        if (carousel.has(i)) {
            continue;
        }

        if (i > mycarousel_itemList.length) {
            break;
        }

        carousel.add(i, mycarousel_getItemHTML(mycarousel_itemList[i-1]));
    }
}

function mycarousel_getItemHTML(item)
{

    return '<img src=\"' + item.url + '\" height=\"129\" alt=\"' + item.url + '\" />';
}

$(document).ready(function(){
    $('a.lightbox').lightBox();
});