$(document).ready(function(){
	
	var footer = $('#footer');
	
	footer.css({ 'top': ($(document).height()-30)+'px' });
	
	$(window).resize(function(){
		footer.css({ 'top': ($(window).height()-30)+'px' });
	});
	
});