<!-- Begin
function makeHeight(){
if (x >=810) {
document.getElementById('home_scroller').style.height = y - (111) + 'px';
}
else if (x <=810) {
document.getElementById('home_scroller').style.height = y - (90) + 'px';
}
if (x >=1100) {
document.getElementById('homewrapper').style.width='1000px';
document.getElementById('latest_collage').style.width='1000px';
}
else if (x <=1100 && x >=810) {
document.getElementById('homewrapper').style.width='950px';
document.getElementById('latest_collage').style.width='950px';
}
else if (x <=810) {
document.getElementById('homewrapper').style.width='750px';
document.getElementById('latest_collage').style.width='750px';
}
}

function dostuff() {
makeHeight();
newsticker();
}
window.onload = dostuff;
//  End -->