// JavaScript Document
function scrollTo(targ, speed, ease){
	var val =  $(targ).offset().top;
	
	$('html, body').animate({scrollTop:val}, {duration:speed || 1000, ease:ease || 'easeInOutQuad'} );
}
