//stick the footer at the bottom of the page if we're on an iPad/iPhone due to viewport/page bugs in mobile webkit
function() {
	if(navigator.platform == 'iPod')
{
     $("#footer").css("position", "static");
};
}

