// add page_loaded class to HTML when page is fully loaded
$(window).load(function () {
	$("html").addClass("page_loaded");
});

