function blink_new_watch() {
	is_new_watch_link_obj = document.getElementById("is_new_watch_link");
	
	is_new_watch_link_obj.style.visibility = (is_new_watch_link_obj.style.visibility == 'visible')?'hidden':'visible';
}

var bottomBannerLeftPos = 0;
var bottomBannerImgWidth = 934;

function move_obj_to_bottom() {
    var offset = 0;
    var element = document.getElementById('bottom_banner_div');

    element.style.top = (document.documentElement.scrollTop + (document.documentElement.clientHeight - element.offsetHeight) + offset) + 'px';
	
	document.getElementById('bottom_banner_div').style.width = document.documentElement.clientWidth + "px";
}

function scroll_bottom_banner() {
	var bottomBannerImg = document.getElementById('bottom_banner_img');
	
	if (-bottomBannerLeftPos == bottomBannerImgWidth) {
		bottomBannerLeftPos = 0;
	}
	else {
		bottomBannerLeftPos--;
	}
	
	bottomBannerImg.style.left = bottomBannerLeftPos + "px";
}

function move_banner_to_bottom() {
    var offset = 0; // set offset (likely equal to your css top)
    var element = document.getElementById('bottom_banner_div');

    element.style.top = (document.documentElement.scrollTop + (document.documentElement.clientHeight - element.offsetHeight) + offset) + 'px';
}