function defineHeight() {
    
    jQuery('#stagecontent, .jScrollPaneContainer').height(jQuery(window).height()-300 - jQuery('footer').height());
    
    
    jQuery('#stagecontent').jScrollPane({
    	scrollbarWidth: 12,
    	showArrows: true,
    	reinitialiseOnImageLoad: true
    });    
    jQuery('#stage').height(jQuery(window).height()-230);
}

jQuery().ready(function() {
    defineHeight();        
    jQuery(window).resize(function() {
    	defineHeight();
    });
    
    jQuery('#stagecontent').jScrollPane({
    	scrollbarWidth: 12,
    	showArrows: true,
    	reinitialiseOnImageLoad: true
    });

    
});		
