function em (name, domain){
	window.location = "mailto:" + name + "@" + domain;
}

function swap_hover(id) {
	document.getElementById('app_'+id).src='assets/images/app_'+id+'_hover.png';
	document.getElementById('hex_'+id).style.backgroundImage='url(assets/images/hex/hex_'+id+'_hover.png)';
	//document.getElementById('text_image').src='assets/images/text_'+id+'.png';
}

function swap(id) {
	document.getElementById('app_'+id).src='assets/images/app_'+id+'.png';
	document.getElementById('hex_'+id).style.backgroundImage='url(assets/images/hex/hex_'+id+'.png)';
	//document.getElementById('text_image').src='';
}

function check(id) {
	if (document.getElementById(id).value == 1) {
		document.getElementById(id).value = 0;
		document.getElementById(id+"-check").style.backgroundImage='';
	}	else {
		document.getElementById(id).value = 1;
		document.getElementById(id+"-check").style.backgroundImage='url(assets/images/range/tick.png)';
	}
	
}
