$(document).ready(function() {

	// Additionally we also need to strip the html tags from the teaser tags
	// and make sure it's not longer than 50 chars
	var stripped = $('#nav_teaser span').text();
	if (stripped.length > 50) {
		stripped = stripped.substring(0,50) + '...';
	}
	$('#nav_teaser span').html(stripped);
	
});
