function inputValue(input) {
	if(!input.title) {
		input.title = input.value;
		input.value = '';
	} else {
		if(!input.value) {
			input.value = input.title;
			input.title = '';
		}
	}
}

function checkInput(id) {
	input = document.getElementById(id);
	if(!input.value || !input.title) return false;
}

function closeIntro() {
	document.getElementById('ad_intro').style.display = 'none';
}

function map(mapclick) {
	if(mapclick < 8) {
		document.getElementById('map').style.backgroundPosition = "0px -"+(mapclick*160)+"px";
	} else {
		document.getElementById('map').style.backgroundPosition = "-200px -"+((mapclick-7)*160)+"px";
	}
}

function mail() {
	document.getElementById('input_form').value = 'js';
}
