$(document).ready(function(){

$('#nav ul').append("<li><a href=\"#\" id=\"scrl\">Our Address</a></li>");

$('a#scrl').click(function(){

$("html, body").animate({ scrollTop: $(document).height() }, 900, function(){

$(".footercontent p").animate({'opacity':0.6}, 100, function(){

$(this).animate({'opacity':1}, 100);

});

});
return false;



});



});
