$(function(){ 
	$("div.news").newsticker({tempo:20});
	$("div.cnt2 div.c,div.cnt3 div.c,div.cnt4 div.c").scrollBar();
	$(".ui-infobox").css("height","0px").parent().mouseenter(function(event){
		$(this).find(".ui-infobox").animate({ 
			height:$(this).find(".ui-infobox-cnt")[0].scrollHeight
		},500);
	}).mouseleave(function(event){
		$(this).find(".ui-infobox").animate({ 
			height:"0px"
		},700);
	});
});