jQuery.noConflict();

// antigo=> $(document).ready(function()
						   
jQuery(document).ready(function($){
	
	var $item = $('#expand li');
	var alturaMax = 30;
	
	$item.wrapInner('<div>')
		 .css({
		 width:  '30px'
		,height: '30px'
	  })
	  	.hover(function(){
		altura = $(this).children('div').height();
		$(this).stop().animate({
			 width:  '120px'
			,height: '30px'
		});
	},function(){
		$(this).stop().animate({
			 width:  '30px'
			,height: '30px'
		});
	});
});
