$(document).ready(function() {
	Date.monthNames = [
  'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'
];
	$.dpText = {
		TEXT_PREV_YEAR	:'Previous year',
		TEXT_PREV_MONTH	:'Previous month',
		TEXT_NEXT_YEAR	:'Next year',
		TEXT_NEXT_MONTH	:'Next month',
		TEXT_CLOSE	:'Close',
		TEXT_CHOOSE_DATE:'<img src="/themed/competence/img/layout/calendar.png" alt="Choose date" />',
		HEADER_FORMAT   :'mmmm yyyy'
	};
	Date.format = 'yyyy-mm-dd';
	$('.date-picker').datePicker({startDate:'01/01/2000'});
	//$("textarea[class!='wysiwyg']").autogrow();
	$('textarea.wysiwyg').each(function() {
		new nicEditor({iconsPath:'/themed/competence/img/nicEditorIcons.gif', buttonList:['bold','italic','underline','left','center','right','ul','link'], fullPanel:false}).panelInstance($(this).attr('id'));
	})
});//
