// JavaScript Document

$(document).ready(function(){
	var a = $("#tree>li:eq(0)>div");
	var b = $("#tree>li:eq(0)>ul:eq(0)>li:eq(0)>div");
	$(a).click();
	$(b).click();
	$("#newsticker").html("TEST");				   
						   
});
