$(function(){
	$('body').supersleight({shim: '/common/img/s.gif'});
  
  /*$('.action a').click(function(){
    if ( $(this).hasClass('exibir') ){
      $('.filtros-avancados').slideDown('fast');
      $(this).hide();
      $('.action a.remover').show();
    } else {
      $('.filtros-avancados').slideUp('fast');
      $(this).hide();
      $('.action a.exibir').show();
    }
  });*/
  
  $('table.sortable tbody tr:odd').addClass('odd');
  $("table.sortable tr").find("td:nth-child(1)").addClass('first');
  $("table.sortable tr").hover(
    function () { $(this).find("td").addClass('hover') }, 
    function () { $(this).find("td").removeClass('hover') }
  )
  
  $('ul.sortable li:even, dl.sortable dd:even').addClass('even');
  
	$('.action a').click(function(){
		if ( $(this).hasClass('exibir') ){
		} else {
			removerFiltrosAvancados();
			var cssObj = {
				'position' : 'absolute',
				'bottom' : '0',
				'left' : '240px',
				'margin-bottom' : '-12px',
				'*margin-bottom' : '-12px',
				'text-align' : 'center',
				'width' : '654px'
			}
			$('.decor').css(cssObj);
		}
	});
  
	//$('textarea.limited').maxlength({
	//	'feedback' : '.restantes' // note: looks within the current form
	//});

  
});