// config
var animationSpeed = 300;

$(function(){		   
	$('.work a').each(function(){
		$(this).append('<span class="hover"></span>');
	}).hover(function(){
		$(this).children('span.hover').stop(true, true).fadeIn(animationSpeed);
	}, function(){
		$(this).children('span.hover').stop(true, true).fadeOut(animationSpeed);
	});	
	
	$('.prev').click(function(){
		$.scrollTo( '-=466px', 600 );
	});

	$('.next').click(function(){
		$.scrollTo( '+=466px', 600 );
	});
	$('.thanks').click(function(){
		$.scrollTo( 0, 2500 );
	});
});
