function opendrop(id){
	if($(id+'-drop').style.display == 'none'){
		$$('div.dropdown').each(function(el){closedrop(el.id);});
		$$('div.dropdownL').each(function(el){closedrop(el.id);});
		$(id+'-drop').style.display = 'block';
		$(id).addClass('pr');
		$(id+'-drop').addClass('pa');
	} else {
		closedrop(id);
	}
}

function closedrop(id){
		$(id+'-drop').style.display = 'none';
		$(id).removeClass('pr');
		$(id+'-drop').removeClass('pa');
}

function mark(id, text, value){
	closedrop(id);
	$(id+'-main').innerHTML = text;
	$(id+'-input').value = value;
}

function toggle(id){
	$(id).style.display = ($(id).style.display == 'none') ? 'block' : 'none';
	$('footer').style.position = 'relative';
}
