//var calendarSrc = 'http://www.google.com/calendar/feeds/economicsuva%40gmail.com/public/full?orderby=starttime&sortorder=ascending&futureevents=true&max-results=4&alt=json-in-script&callback=?';
var calendarSrc = 'http://www.google.com/calendar/feeds/economicsuva%40gmail.com/public/full-noattendees?orderby=starttime&sortorder=ascending&ctz=America/New_York&futureevents=true&singleevents=true&max-results=5&alt=json-in-script&callback=?';
$().ready(function() {
	if($('body').is('#economicsHome') ) {
		if($('.intro h2').text().length > 82) {
			$('.intro h2').html(sayings[Math.floor(Math.random()*sayings.length)]);
		}
		var hilited = $('.intro h2').html().replace(/([\s\>])([a-z])/, '$1<span class="hilite">$2</span>');
		$('.intro h2').html(hilited);
		if($('.hilite').width() < 15) { $('.hilite').css('paddingLeft', function(char) { return 15 - $(this).width(); } ); } // Make sure the character is wide enough for triangle icon		
	} else if ($('#doc4').hasClass('yui-t2') ) {
		var $body = $('#yui-main');
		var $nav = $('#bd>.yui-b');
		if($body.height() < $nav.height()) { $body.find('.yui-b').height($nav.height() ); }
	}
});


var sayings = ['Shakespeare: <strong>brevity</strong> <em>is the</em> soul <em>of</em> <strong>wit.</strong> <br /><em>(please limit this to 82 characters)</em>',
							 'Sometimes <em>less</em> is <strong>more</strong><br /><em>(please limit this to 82 characters)</em>',
							 '<strong>Shorten,</strong> <em>shorten,</em> shorten. <br /><em>(please limit this to 82 characters)</em>',
							 'Sorry! We\'re <em>out of</em> <strong>room!</strong> <br /><em>(82 characters or less)</em>',
							 '<em>When faced</em> with <strong>scarcity</strong> you... <br /><em>(please limit this to 82 characters)</em>'];