$(document).ready(function() {
	$('.topbar').dropdown();
	$("textarea#msg").textareaPreview({
		preprocess: function(text) {
			var length = text.length;
			if(length < 300){
				return text.replace(/\n/g, "<br>");
			}	
		},
	    container: $(".card-msg")
	 });	
	$('textarea#msg').maxlength({
		maxCharacters: 300, 
		statusText: "characters left", 
		alertText: "You've reached the 300 character limit. Easy there, cowboy.", 
		statusClass: "pull-right num-chars", 
		status: true, 
		showAlert: true
	});
	$(".scroll").jScroll({speed : "fast", top : 120});
});
