	$(function(){
	positionFooter(); 
	
	function positionFooter(){
		
		$("#dock").css({position: "fixed",bottom:"0px"})	
	}
 
	$(window)
		.scroll(positionFooter)
		.resize(positionFooter)
});
