this.randomSection = function(){
	var length = $(".small_rotator li").length;
	var ran = Math.floor(Math.random()*length) + 1;
	$(".small_rotator li:nth-child(" + ran + ")").show();
};
