$(document).ready(function() {
		
	////////
//// Core Website
	////////	
		
		//Apply numbered Class to Nav		
		$('ul#nav li a').each(function(i) {
			$(this).addClass("nav-" + i);
		});
		
		//Nutritional Panels
		$('h4#ni').click(function() {
			$(this).toggleClass('on','off');
			$(this).parent().find("#nutritionalpanel").slideToggle(500);						  
		});
		
		//Nutritional Panels
		$('h4#ni2').click(function() {
			$(this).toggleClass('on','off');
			$(this).parent().find("#nutritionalpanel").slideToggle(500);						  
		});
	
	///////
//// Meet the Farmers
	///////
	
		//Meet the farmers map
		$('div#bega-map div.state-slide a.tab').hide();
		
		$('div#bega-map div.state-slide').hover(
			function() {
			$(this).find('a.tab').animate({width: 'show'});
			$(this).css('z-index','100');
		 },
		 	function() {
				$(this).find('a.tab').animate({width: 'hide'});
				$(this).css('z-index','99');
			});
		
});
