//window.onload = setBG();

function scroll2top() {
	window.scroll(0,0);
}
function showMoreContent() {
document.getElementById("moreContentBtn").style.display="none";
var i=0, fo;
	while (fo = document.getElementById('eNews'+i)) {
		fo.style.display = "block"; i++;
	} fo = i = null;
}
function thisVScrollBy(y) {
	window.scrollBy(0,y);
}
function add2favorites(title, url) {
 	//title = "DANIELLE BOLLINGER RSS NEWS"; 
 	//url = "http://www.daniellebollinger.com";
	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	}
	else if ( window.external ) { // IE Favorite
		window.external.AddFavorite( url, title);
	}
	else { // the rest
		alert("Press CTRL-D (Netscape) or CTRL-T (Opera) to bookmark");
	}
}