
// Switch ID
function switchID(id1,id2) {
	document.getElementById(id1).style.display = 'none';
	document.getElementById(id2).style.display = 'block';
}


// Random Case
divs = ['homeCase1','homeCase2','homeCase3'];

function hideDivs() {
for (var i=0; i<divs.length; i++)
document.getElementById(divs[i]).style.display = 'none';
}

function showDiv() {
hideDivs(); //hide them all before we show the next one.
var randomDiv = divs[Math.floor(Math.random()*divs.length)];
var div = document.getElementById(randomDiv).style.display =
'block';

setTimeout(showDiv,10000); // Switch Delay
}


// Decrypt Mail Drosbakken
function email(first,last) {
	if (arguments.length == 1 )
	var decrypted_string = "mailto:"+first+"@drosbakken.com";
	else
	var decrypted_string = "mailto:"+first+"."+last+"@drosbakken.com";
	parent.location = decrypted_string;
}

// Decrypt Mail DLA Nordic
function emailDLAN(first,last) {
	if (arguments.length == 1 )
	var decrypted_string = "mailto:"+first+"@dlanordic.se";
	else
	var decrypted_string = "mailto:"+first+"."+last+"@dlanordic.se";
	parent.location = decrypted_string;
}
