/**
2 * @author egreiner
3 */

(function($){
	$.musa_incentives={
		_init:function(){			
			$.musa_incentives.incentiveLink();	
		},
		 // More Details links
		incentiveLink:function(){ 
			$('.detailLink').click(function () { 
	            
				if ($(this).parent().next().css('display')=="none"){ 
	            	$(this).text('Hide Details'); 
	           	}else{ 
	            	$(this).text('More Details'); 
	            } 
	                      
				$(this).parent().next().toggle('blind', { direction: 'vertical' }, 250); 
	           });
			           
	      }

	}
	$.musa_incentives._init();	
	
})(jQuery);



