$(function(){
	var sidebar = $('#sidebar'),
		content = $('#content');
		
	if(sidebar.height() < content.height()) 
		sidebar.css('height', parseInt(content.height())).find('.right').css('height', parseInt(content.height())-20);
		
	//in the news plugin
	$('#in-the-news ul li').each(function(){  
		var title = $(this).find('a').text();
		
		$(this).prepend(title + '. ');
		$(this).find('a').text('Read More');
	});
	
	//console.log('sidebar: ' + sidebar.height() + ' | content: ' + content.height());
});
