$(document).ready(function () {
	var winheight = $(window).height() - 156; 
	$('#main-content').height( winheight );
	
	// this initialises the scollpanes on the page.
	$('#main-content').jScrollPane({showArrows:true});
});

$(window).resize(function(){
	window.location=window.location;
});

function padLeft(n, total_length ) 
{ 
    n = n.toString(); 
    var pd = ''; 
    if (total_length > n.length) 
    { 
        for (i=0; i < (total_length - n.length); i++) 
        { 
            pd += '0'; 
        } 
    } 
    return pd + n.toString(); 
} 
