/*
 *
 * International Nitrogen Initiative UI Behaviors
 * Copyright(c) 2010- INI
 * s4parke@gmail.com
 * 
 */

var INI = {

	homeMap : function(){
		$('.mapMark').click(function(){
			var show = $(this).attr('id');
			$('#mission').not('.hidden').addClass('hidden');
			$('.map-desc').hide();			
			$('.teaser').find('.'+show).show();
		});
		return true;
	}
}

$(window).load(function(){

	$('body.home') && INI.homeMap() && INI.homeFeatures();
	
});
