﻿/*
$(document).ready(function() {
	var footerheight = $('#footer1').height();
	if ($('.ButtonContainer').size() > 0) {
		var pageheight = $('.ButtonContainer').position();
		$('#footer1').css("top", pageheight.top - footerheight);
	}
	else {
		$('#footer1').css("top", $(document).height() - footerheight);
	}
});

*/
