$(function(){
		$('.codeEditor').each(function(i,textarea){
		editAreaLoader.init({
			id: textarea.id	// id of the textarea to transform		
			,start_highlight: true	// if start with highlight
			,allow_resize: "both"
			,allow_toggle: false
			,word_wrap: true
			,language: "en"
			,syntax: "js"	
		});
		});
});

