var $j = jQuery.noConflict();

$j(document).ready(function(){
	$j(".hover_bubble").hide();
	$j(".hover_block").hover(
		function(){
			$j(".hover_bubble").fadeOut(100);
			$j(this).find(".hover_bubble").fadeIn();
		},function(){
			$j(this).find(".hover_bubble").fadeOut();
		});
	$j("#scroller_ul li").each(function(){t = $j(this).html();t = t.substr(0,100);$j(this).empty().append(t);});


});
