/* Author: Jansen Tolle
*/

$(document).ready(function() {
	/* Get Window Height */
	var windowHeight = 	$(window).height();
	/* If window height < 700px and not on the home page, scroll to content */
	if (windowHeight <= 800 && $("#home").length == 0 && $("#portfolio").length == 0) {
		$('html, body').animate({
    scrollTop: $("#content").offset().top
		}, 1000);
	}
});






