var ddopen = false;
var oldover = "";
var oldbgover = "";

function isie(){
	var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;    // true if we're on ie
	if(navigator.userAgent.indexOf("Opera") != -1){
		isIE = false;
	}
	return isIE;
}

function he(){
	// alert(Position.positionedOffset("mark")[1]);
	var pos = $("mark").cumulativeOffset();
	//alert(pos.top)
	return pos.top;
}

function rover(ob){
	oldover = ob.src;
	a=ob.src.split("_c").join("_o");
	a=a.split("_n").join("_o");
	ob.src=a;
}
function rout(ob){
	ob.src = oldover;
}

function bgover(id){
	ob = $(id);
	ob.style.background = 'url(img/mnu/sb_o.jpg) no-repeat';
}
function bgout(id){
	ob = $(id);
	ob.style.background = 'url(img/mnu/sb_n.jpg) no-repeat';
}

function init(){
    // alert(he());
    ob = $("res");
    ob.style.height = (he()-420)+"px";
}

function bloginit(){
	// alert(he());
	var res = $("res");
	var cheight = he()-336;
	if(res.offsetHeight < cheight){
		res.style.height = cheight+"px";
	}
	window.onresize = bloginit;
}

