$(document).ready(function() {		
		$('#admin_toggle').live('click', function() { 
			$.get('/support/doStuff.php?do=admin-bar-showhide&itemID', function(data) {
              //alert(html(data));
            });
		});
});
function mmd_run_ajax(theseParams)
{
	if ( theseParams['post'] != '')
	{
		$.post('/support/doStuff.php?do='+theseParams['action']+'&which='+theseParams['which']+'&childOf='+theseParams['childof']+'&'+theseParams['custom'], theseParams['post'], function(data) {
		 if ( theseParams['add'] != null ) {
				$(theseParams['add']).append(data);
		  } else {
			  $(theseParams['fill']).html(data);
		  }
		});
	}
	else
	{
		$.get('/support/doStuff.php?do='+theseParams['action']+'&which='+theseParams['which']+'&childOf='+theseParams['childof']+'&'+theseParams['custom'], function(data) {
		  if ( theseParams['add'] != null ) {
				$(theseParams['add']).append(data);
		  } else {
			  $(theseParams['fill']).html(data);
		  }
		});
	}
}
