// JavaScript Document

function totop(){
	location.href="#";
	setTimeout("Redirect()",5000);
}

function top(){
	location.href="#";
}

function Redirect(){
	location.href="http://www.kompetenz-im-verbund.com/index.php/de/ashland_suedchemie_kernfest_gmbh";
}

function wait(){
	setTimeout("slideUp()",5000);
}

function moveTo(obj, x, y) {
        if (document.getElementById) {
        document.getElementById('slideit').style.left = x;
        document.getElementById('slideit').style.top = y;
        }
}

function init(){
        location.href="#";
				if(document.getElementById){
        obj = document.getElementById("slideit");
        obj.style.top = "380px";
        }
}

function slideDown(){
        if(document.getElementById){
                if(parseInt(obj.style.top) < 380){
                        obj.style.top = parseInt(obj.style.top) + 10 + "px";
                        setTimeout("slideDown()",50);
                }
        }
}

function slideUp(){
        if(document.getElementById){
                //alert(obj.style.top);
								if(parseInt(obj.style.top) > 111){
                        obj.style.top = parseInt(obj.style.top) - 10 + "px";
                        setTimeout("slideUp()",50);
                }
        }
}