function collapsElement(id) {
    if ( document.getElementById(id).style.display != "none" ) {
        document.getElementById(id).style.display = 'none';
		document.getElementById('helpclosebut').style.background = 'url(http://forte-it.ru/img/menu-arr2leftbb.jpg) no-repeat center';
    }
    else {
        document.getElementById(id).style.display = '';
		document.getElementById('helpclosebut').style.background = 'url(http://forte-it.ru/img/menu-arr2s.jpg) no-repeat center';
    }
}
