// JavaScript Document

//---------------Page Adjust-------------------
$(document).ready(function() {
	mframeResize();
	window.onresize = mframeResize;
});

function mframeResize() {
	var innerHeight = (document.all) ? document.body.offsetHeight : window.innerHeight;
	var innerWidth = (document.all) ? document.body.offsetWidth : window.innerWidth;
	
	$("#mainContent").height(innerHeight - 30);
	$("#mainContent").height(innerHeight - 30);
}

//----------------Main Menu--------------------
function topbarOver(obj) {
	obj.className = "topbarOver";
}

function topbarOut(obj) {
	obj.className = "topbarNormal";
}
