$(function() {
	
	// Set textareas to auto grow based on content
	$( 'textarea' ).autogrow();
	
	// Open link in new window
	$( 'a.new-window' ).click( function() {
		url = $(this).attr( 'href' );
		
		window.open( url );
		return false;
	});
	
});
