$(document).ready(function() {

	$('#slideshow').cycle({
		fx: 'uncover' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
  positionFooter();
  
  $(window)
    .scroll(positionFooter)
    .resize(positionFooter);
  
  function positionFooter() {
    var docHeight = $(document.body).height() - $("#sticky-footer-push").height();
    if(docHeight < $(window).height()){
      var diff = $(window).height() - docHeight;
      if (!$("#sticky-footer-push").length > 0) {
        $("footer").before('<div id="sticky-footer-push"></div>');
      }
      $("#sticky-footer-push").height(diff);
    }   
  }
});
