// JavaScript Document

function start () {
	
	// This function basically checks for IE7 and adjusts any hacks put in place for IE6
	if (typeof document.body.style.maxHeight != "undefined") {
	  // IE 7, mozilla, safari, opera 9
	  
	} else {
	  // IE6, older browsers
	  //oRight = document.getElementById("right");
	  //oRight.style.marginLeft = '527px';
	}
	
}

window.onload = start;
