$(document).ready(function() {

	$('#right_content').fadeTo(800, 1);

	$('#right_content').css({overflow:"hidden"});
	$('#right_content ul').width($("ul.bloksli > li.blok").length * 120);

	var $list = $('ul.bloksli'); 
	var containerheight = $('#right_content').height(); 
	var listheight = $('ul.bloksli').height(); 
	var mousepos = 1; 
	
	$('#right_content').mousemove(function(e) { 
	  var diff = e.pageY - mousepos; 
	  if (diff > 20 || diff < -20) { 
		  mousepos = e.pageY; 
		  newY = (containerheight - listheight) * (e.pageY/containerheight); 
		  diff = parseInt(Math.abs( $list.css('top').substring(0,4)- 
	newY )); 
		  $list.stop().animate({'top':newY}, 
	{duration:diff*5,easing:'easeOutExpo'}); 
		} 
	}); 



}); 
