$(document).ready(function() {
	var newHeight = 0;
	newHeight = $('div#centerContent').height();
	if($('div#rightBar').height() > newHeight) newHeight = $('div#rightBar').height();
	if($('div#leftBar').height() > newHeight) newHeight = $('div#leftBar').height();
	$('div#centerContent').height(newHeight);
	$('div#rightBar').height(newHeight);
	$('div#leftBar').height(newHeight);

	$('#Mak03routeLinkId').click(function() {
		$('#Mak03fragment-4 iframe').attr({
			src: $('#Mak03fragment-4 iframe').attr("src")
		});
	});
});

