$(document).ready(function(){
	$("#index_nav li").hover(function() {
		$('#' + this.id + '_text').css("visibility", "visible");
	},
	function() {
		$('#' + this.id + '_text').css("visibility", "hidden");
	});
	
});

$(function(){
	// Initialize the scroll panels
	var scrollLeft = $('#scroll_left');
	
	if(scrollLeft.length > 0) 
		scrollLeft.jScrollPane({scrollbarWidth: 11, showArrows: true });
	
});

