$(function(){
  //SetBottom();
  //$("#bottom").css("bottom", "0px");
});

$(window).resize(function(){
  //SetBottom();
});

$(window).scroll(function () { 
  //SetBottom();
});


function SetBottom()
{
  $("#bottom").css("bottom", "0px");
  var h = $(window).height();
  if($(window).height() < $(document).height())
	h = $(document).height();
  var pos = h - $("#bottom").height() - 4;
  $("#bottom").css("top", pos + "px");
}
