jQuery(document).ready(function() {
var stageHeight = jQuery("#stage-container").height();
	
	jQuery("#stage-container #stage").css({
		"height" : stageHeight,
		"min-height" : stageHeight,
		"height" : 'auto'
	});
	jQuery("#footer ul li:last-child").css({
		"border-right" : "0px solid #fff" 
	});

  })

/*
//this should do the resize upon font sizze change. does not work
jQuery(document).ready(function() {
var stageHeight = jQuery("#stage-container").height();
	initialSize = jQuery("#stage-container").height(); // Get initial font size
	checkSize(); // Watch for font size changes
  
  	jQuery("#stage-container #stage").css({
		"height" : stageHeight 
	});
	
});

function checkSize() {
  var currentSize = jQuery("#stage-container").height(); // Get current font size
 
  // Compare sizes & run jQueryFunction() if different
  if (currentSize != initialSize) {
    jQueryFunction();
    initialSize = currentSize;
  }
 
  timer(); // Check size again after 1 second
}

function timer() {
  var myTimer = setTimeout('checkSize()', 1000); // Check size every 1 second
}

function jQueryFunction() {
  // Code here to run on font size change...
  
  	jQuery("#stage-container #stage").css({
		"height" : stageHeight 
	});
}

*/