$(document).ready( function() {
	fixLayout();
	//alert('testing');
} );


var resizeTimer = null;
$(window).bind('resize', function() {
    if (resizeTimer) clearTimeout(resizeTimer);
    resizeTimer = setTimeout(fixLayout, 100);
})


function fixLayout(){
	fixFooter();
		
}

function fixFooter(){
	var total_height = 0;
	var window_diff;
	var window_height;
	
	$('#page').height( 'auto' );
//parseInt(jQuery("myId"))
	total_height = $('#headBar').height() + $('#page').height() + $('#footerSpan').height();
	//alert(total_height);
	if( $('#admin-menu').length > 0 ){
		total_height = total_height + $('#admin-menu').height();
	}
	
	if ($.browser.msie){
		window_height = $('html').height();	
	} else if ($.browser.opera){
		window_height = window.innerHeight;
	} else if ($.browser.safari){
		window_height = $(window).height();
	} else {
		window_height = $(window).height();
	}
	
	if (total_height < window_height){
		window_diff = window_height - total_height;
		//if(is_resize){
			$('#page').height($('#page').height() + window_diff);
		//} else {	
			//$('#page').height($('#page').height() + window_diff - 42 );
		//}
	}
}
