var hgssMicrosite = {
	scrollTo:function(offset,speed) {
		var targetY,duration;
		
		if(typeof offset != 'number') {
			targetY = 0;
		} else {
			targetY = offset;
		}
		
		if(typeof speed != 'number') {
			duration = 600;
		} else {
			duration = speed;
		}
		
		setTimeout(function() {
			$(window).scrollTo(targetY,{duration:duration,easing:'easeOutSine'});
		},0);
		
	}
};