$(document).ready(
		function() {

			if ($('#browser').length) {
				$('#browser').treeview();
			}
			    
			$('#shortDesc').maxlength({   
				events: [], // Array of events to be triggerd    
				maxCharacters: 100, // Characters limit   
			    status: true, // True to show status indicator bewlow the element    
			    statusClass: "shortDescStatus", // The class on the status div  
			    statusText: "merkkiä jäljellä", // The status text  
			    notificationClass: "",	// Will be added when maxlength is reached  
			    showAlert: false, // True to show a regular alert message    
			    alertText: "", // Text in alert message   
			    slider: false // True Use counter slider    
			});
			
			$('#longDesc').maxlength({   
				events: [], // Array of events to be triggerd    
				maxCharacters: 1000, // Characters limit   
			    status: true, // True to show status indicator bewlow the element    
			    statusClass: "longDescStatus", // The class on the status div  
			    statusText: "merkkiä jäljellä", // The status text  
			    notificationClass: "",	// Will be added when maxlength is reached  
			    showAlert: false, // True to show a regular alert message    
			    alertText: "", // Text in alert message   
			    slider: false // True Use counter slider    
			});

		}
		
);
