$(function(){
	showMenu();
	applyStyle();

});
function showMenu(){
	var text = $('#menu_tools').text().replace(new RegExp("[\n\t ]","g"),"");
	if(text == ""){
		$('#box_menu_tool').hide();
	}else{
		$('#box_menu_tool').show();
	}
}
function applyStyle(){
	$('#menu_tools ul:first').children('li').each(function(){
		$(this).addClass('ui-widget-content ui-corner-all box');

	});
}

