var Site = {
	textSize: function() {
		$('#text-size a').click(function(){
			size = $(this)[0].id.substring(2);
			$('body').removeClass("small medium large").addClass(size);
			Site.bottomFloat();
		});
	},
	bottomFloat: function() {
		if (dog = $("#slalom-dog")[0]) {
			$(dog).css('display', 'block');
			$("#content").find('#zd-content1 > *').each(function() {
				foundTop = $(this).offset().top;
				if (foundTop > $("#content").offset().top + $("#content").height() - 300) {
					$(this).addClass('dog-floated');
				} else {
					$(this).removeClass('dog-floated');
				}
			});
		}
	}
		
}

$(document).ready(function() {
	Site.textSize();
	Site.bottomFloat();
});
