function pageup() {
if (document.all) { posi = document.body.scrollTop; }
else { posi = window.pageYOffset; }
moveObje(posi);
}
function moveObje(position) {
move = position / 15;
point = parseInt(position - move);
scrollTo(0,point);
if (point > 0) { setTimeout("moveObje(point)",1); }
}

$(document).ready(function() {
	$('.info').hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default");
		});
	$('.detail').css("display","none");
	$('.info').click(function(){
		$(this).next().slideToggle();
		//$(this).next().css("display","block");
	});
});

$(document).ready(function() {
	$('.navigation ul li a').hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default");
		});
	$('.navigation h1').hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default");
		});
	$('.navigation > h1').click(function(){
		$(this).next().slideToggle("slow");
		//$(this).next().css("display","block");
	});
});

$(document).ready(function() {
	$('.navigation ul li a').hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default");
		});
	$('.navigation h3').hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default");
		});
	$('.navigation > h3').click(function(){
		$(this).next().slideToggle("slow");
		//$(this).next().css("display","block");
	});
});

$(document).ready(function() {
	$('.navigation h2').hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default");
		});
	$('ul.sub').css("display","none");
	$('.navigation > h2').click(function(){
		$(this).next().slideToggle("slow");
		//$(this).next().css("display","block");
	});
});

$(document).ready(function() {
	$('.navigation h4').hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default");
		});
	$('ul.sub').css("display","none");
	$('.navigation > h4').click(function(){
		$(this).next().slideToggle("slow");
		//$(this).next().css("display","block");
	});
});