// JavaScript Document
	$('.thumb').hover(
		function() {
			$(this).children('.thumb-hover').animate({opacity:'show', bottom:1}, 200);
		},
		function () {
			$(this).children('.thumb-hover').animate({opacity:'hide', bottom:'-=20'}, 200);
	});
	
	$('.nv').hover(
		function() {
			$(this).children('.nv-hover').animate({opacity:'show', bottom:0}, 200);
		},
		function () {
			$(this).children('.nv-hover').animate({opacity:'hide', bottom:0}, 200);
	});
	
	
	$('.hoch').click(function(){
	$('html').animate({scrollTop: 0},'slow');
	$('body').animate({scrollTop: 0},'slow');
	return false;
	});
