// JavaScript Document
$(document).ready(function() {
	centerHeight = $('#cCenter').height();
	rightHeight = $('#cRight').height();
	
	if (centerHeight > rightHeight) {
		$('#cLeft').css({'height': (centerHeight+20)+"px" });	
		$('#cRight').css({'height': centerHeight+"px" });	
	}else {
		$('#cLeft').css({'height': (rightHeight+20)+"px" });	
		$('#cCenter').css({'height': rightHeight+"px" });	
	}
	
	sayingY = $('#cRight').height() - $('#saying').height();
	$('#saying').css({ 'marginTop': sayingY+'px' });
	
	
	
});