// menu directory js
function tagCloud(){
	//$('tag_cloud').style.display='block';
	//$('tag_cloud').innerHTML= '<img src="http://www.grouprecipes.com/images/fork_loading.gif" style="position:relative; top:3px;"> <span class="loading">Grabbing Tags...</span>';
	new Ajax.Updater('tag_cloud', 'http://www.grouprecipes.com/menu_tag_cloud.php', {
	method: 'get',
	onComplete: showCloud
 });
	function showCloud(){
		$('search_results').style.display='none';
	//	$('tag_cloud').style.display='none';
		new Effect.SlideDown('tag_cloud', {duration:0.5});
	}
}

function refineByTag(tag){
	$('search_results').innerHTML = '<div style="text-align:center;"><img src="http://www.grouprecipes.com/images/fork_loading.gif" style="position:relative; top:3px;"> <span class="loading">Loading...</span></div>';
	new Ajax.Updater('search_results2', 'http://www.grouprecipes.com/menu_tag_results.php', {
	method: 'get',
	parameters: 'tag=' + tag,
	onComplete: refineFinished
 });
 
	function refineFinished(){
	$('tag_cloud').style.display='none';
	new Effect.Appear('search_results2', {duration:0.5});
	}
}

<!--
function MM_jumpMenu(targ,selObj,restore){ 
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
//-->