$(document).ready(function() {  
  $('.sort').tablesorter( {sortList: [[0,0]], widgets: ['zebra'] } );
  $('.filter').tableFilter();
  $('.phone').limitkeypress({ rexp: /^[0-9 \.\(\)\+\;]+$/ });
  $('.email').limitkeypress({ rexp: /^[a-zA-Z0-9@\._-]*$/ });
  $('.numeric').limitkeypress({ rexp: /^[0-9]*$/ });
  $('.price').limitkeypress({ rexp: /^[0-9]{0,5}([\.,][0-9]{0,2})?$/ });
  $('.autoresize').autoResize().trigger('change');      
  $('.date').datepicker({
          //changeMonth: true,
          //changeYear: true,
          dateFormat: 'yy-mm-dd',
          buttonText: 'Alege',
          closeText: 'Inchide',
          dayNamesMin: ['Du', 'Lu', 'Ma', 'Mi', 'Jo', 'Vi', 'Sa'],
          duration: 'fast',
          firstDay: 1,
          maxDate: '+1y',
          minDate: '+1d',
          monthNamesShort: ['Ian','Feb','Mar','Apr','Mai','Iun','Iul','Aug','Sep','Oct','Noi','Dec'],
          monthNames: ['Ianuarie', 'Februarie', 'Martie', 'Aprilie', 'Mai', 'Iunie', 'Iulie', 'August', 'Septembrie', 'Octombrie', 'Noiembrie', 'Decembrie'],
          numberOfMonths: 3,
          showCurrentAtPos: 0
  });
  $('.tinymce').tinymce({
    script_url : '/js/tiny_mce/tiny_mce.js',
    theme : "advanced",
		theme_advanced_buttons1 : ",bold,italic,underline,strikethrough,forecolor,|,justifyleft,justifycenter,justifyright,justifyfull,|,bullist,numlist,|,outdent,indent,blockquote,|,formatselect,fontsizeselect,",
		theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,undo,redo,removeformat",
		theme_advanced_buttons3 : "",
		theme_advanced_toolbar_location : "top",
		theme_advanced_toolbar_align : "center",
		theme_advanced_statusbar_location : "bottom",
		theme_advanced_resizing : true
  });
});
