function mail_b(type, box, domain) {
    if (type == "link") {
        document.write("<a href=\"mailto:"+box+"@"+domain+"\">"+box+"@"+domain+"</a>");
    }
    else {
        document.write(box+"@"+domain);
    }
}

var tId;
var hId = 1;

function timestop() {
    clearTimeout(tId);
}

function hideall() {
    document.getElementById('about').style.left = '-1000px';
    document.getElementById('portfolio').style.left = '-1000px';
    document.getElementById('services').style.left = '-1000px';
    document.getElementById('info').style.left = '-1000px';
//    document.getElementById('contact').style.left = '-1000px';
}

function mover(idz, pos) {
    hideall();
	middle = Math.floor(document.body.clientWidth/2);
	place = middle + pos;
	document.getElementById(idz).style.left = place + 'px';
    clearTimeout(tId);
}
function mout(idz, pos) {
	middle = Math.floor(document.body.clientWidth/2);
	place = middle + pos;
	document.getElementById(idz).style.left = place + 'px';
    tId=setTimeout("hideall();",1200);
}

function hall() {

}


function nextt() {
    if(hId==3) {hId=1;}
    else {hId=hId+1;}
    idc = 'hh' + hId;
    document.getElementById('header_image_main').className = idc;
}

function prev() {
    if(hId==1) {hId=3;}
    else {hId=hId-1;}
    idc = 'hh' + hId;
    document.getElementById('header_image_main').className = idc;
}







