Event.observe(window,'load',function()
{

	$$('.c-recipe-navtable td').each( function(e){
	
		$(e).observe('mouseover',function(evt){
			var txt = Event.element(evt).innerHTML 
			if ( txt == activeNav ) return true;
			Event.element(evt).addClassName('nav-over');
		});
	
		$(e).observe('mouseout',function(evt){
				var txt = Event.element(evt).innerHTML
				if ( txt == activeNav ) return true;
				Event.element(evt).removeClassName('nav-over');
		});
		
		$(e).observe('click',function(evt){
			var txt = Event.element(evt).innerHTML
			if (txt == 'Featured Recipes') document.location="/bloom/recipe";
			if (txt == 'My Favorite Recipes') document.location="/bloom/recipe_fav";
			if (txt == 'Recipe Finder') document.location="/bloom/recipe_browse";				
		});
		
	});

});