$.ajaxSetup({cache: false});

$(document).ready(function() {

//move footerStuff to footer
$.get('/Portals/71463/footerstuff.html', function(data) {
	$('#footer').append(data);
});
$("#footer").appendTo("form#Form");


});
