//---------------------------------------------------------------------------------------------------------------------------------------menumouseOver change
function menuOver(id1,id2) {
	document.getElementById(id1).className="menu-separator-on";
	document.getElementById(id2).className="menu-separator-on";	
}
function menuOut(id1,id2) {
	document.getElementById(id1).className="menu-separator";
	document.getElementById(id2).className="menu-separator";	
}

//---------------------------------------------------------------------------------------------------------------------------------------footer down change

function footerpos (){
	var windowHeight = window.innerHeight ? window.innerHeight : document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight;
	footer=document.getElementById("lablec");
	fPos=findPos(footer)[1];
	if (fPos<windowHeight-25){
		footer.style.top=(windowHeight-fPos-25)+"px";
	}else{
		footer.style.top="0px"
	}
}

function findPos(obj) {
	var curleft = curtop = 0;
	if (obj.offsetParent) {
	do {
			curleft += obj.offsetLeft;
			curtop += obj.offsetTop;
		} while (obj = obj.offsetParent);

	return [curleft,curtop];
	}
}



