$('.btn').hover(
	function(){
	$('a',this).stop(true, true).fadeOut();
}, function(){
	$('a',this).stop(true, true).fadeIn();
});
$(document).ready(function(){
	$('.jScrollPaneTrack').css("display","none");
	$('.scrollme, .jScrollPaneTrack').mouseover(function(){
		$('.jScrollPaneTrack').stop('true', 'true').fadeIn();
	}).mouseleave(function(){
		$('.jScrollPaneTrack').stop('true', 'true').fadeOut();
	})
	
})
