function init()
{
	document.getElementById('followDiv1').style.left = document.body.clientWidth-105;
	scrollImg();
}
function scrollImg(){
    var posX,posY;
    if (window.innerHeight) {
        posX = window.pageXOffset;
        posY = window.pageYOffset;
    }
    else if (document.documentElement && document.documentElement.scrollTop) {
        posX = document.documentElement.scrollLeft;
        posY = document.documentElement.scrollTop;
    }
    else if (document.body) {
        posX = document.body.scrollLeft;
        posY = document.body.scrollTop;
    }
    
    var followDiv1=document.getElementById("followDiv1");
    followDiv1.style.top=(posY+100)+"px";
  //  followDiv1.style.left=(posX+50)+"px";

    var followDiv2=document.getElementById("followDiv2");
    followDiv2.style.top=(posY+100)+"px";
//    followDiv2.style.left=(posX+50)+"px";

    
    
    setTimeout("scrollImg()",30);
}

function boardJump(obj)
{
	var selectedValue = obj.options[obj.selectedIndex].value;
	if (selectedValue.indexOf(',') != -1 || selectedValue == -1)
	{
		obj.options[0].selected = true;
		return;
	}
	else
	{
	    location.href = selectedValue;
    }
}