$(function(){
	if(document.getElementById('right')){
		if($('#right').height()<400){
			$('#right').height(400);
			}
		if($('#right').height()<$('#left').height()){
			$('#right').height($('#left').height());
			}
		}	
	});
