// JavaScript Document

// Script used to scroll the window back to the top using a smooth Jquery animation

function scrollWin(){
	$('html, body').animate({
	scrollTop: $("#wrapper").offset().top
	}, 1500);
}