jQuery.noConflict();
jQuery(document).ready(function($){
	var widenAttempts = 0;
	while($('#worktextinner').height() > 550 && widenAttempts < 50) {
		widenAttempts++;
		$('#worktextouter').width($('#worktextouter').width() + 10);
	}
});
