jQuery(document).ready(function() {
	jQuery("#manager-menu .title").toggle(
		function() {
			jQuery(this).parent().css("opacity", "1");
			jQuery(this).next().slideDown();
		},
		function() {
			jQuery(this).parent().css("opacity", "0.5");
			jQuery(this).next().slideUp();
		}
	);
	
	jQuery(".to-round-30").each(function(){
		button = jQuery(this);
		button.removeClass('to-round-30')
			.addClass('button')
			.addClass('button-30');
		text = button.html();
		button.html("<span class='left'><span class='right'><span class='center'>"+text+"</span></span></span>");
		
	});
});
;

