function dropdown( elm ){
		var checkElement = elm.children('ul:first');
		if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
			//elm.children('a:first').css('background-image','url("images/arr-azul.gif")')
			//checkElement.slideUp('normal');
			
			//checkElement.slideDown('normal');
		}
		if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
			//checkElement.slideUp('normal');
			elm.children('a:first').css('background-image','url("images/arr-rojo-down.gif")')
			checkElement.slideDown('normal');
		}
	}
	$(document).ready(function() {
	  var elms = $('#menulateral .sub');
	  elms.each( function() { 
	  	if($(this).hasClass( 's' )){
	  		$(this).children('ul:first').show();
			$(this).children('a:first').css('background-image','url("images/arr-rojo-down.gif")')
		}else{
			$(this).children('ul:first').hide();
			$(this).children('a:first').css('background-image','url("images/arr-azul.gif")')
		}
		
	  	$(this).click( function ( ){ dropdown(  $(this) );   });
	  })
	});
