// TOP Page News Scroller
$(function(){
	//var scroller  = null;
	//var scrollbar = null;
	var scroller  = new jsScroller(document.getElementById("news"), 400, 330);
	var scrollbar = new jsScrollbar (document.getElementById("Scrollbar-Container"), scroller, true, scrollbarEvent);
	function scrollbarEvent (o, type) {
		if (type == "mousedown") {
			if (o.className == "Scrollbar-Handle") o.style.backgroundColor = "#AAA";
			else o.style.backgroundColor = "#CCC";
		} else {
			if (o.className == "Scrollbar-Handle") o.style.backgroundColor = "#CCC";
			else o.style.backgroundColor = "#FFF";
		}
	}
});