function getHeight() {
	var layout07Height= document.getElementById('layout07').offsetHeight;  

		document.getElementById('right01').style.height = layout07Height - 60+"px";
		document.getElementById('left01').style.height = layout07Height - 59+"px";	

}

jQuery.noConflict();
jQuery(document).ready(function($) {
$(document).ready(function(){
//JQuery ready is quicker than onload
$(".contenttable tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
$(".contenttable tr:nth-child(odd)").addClass("alt");
});
}); 
