$(document).ready(function() {

	// animate when title or "learn more" link is clicked
	var impactlinks = $('#actions a');

	impactlinks.click(function() {

		// swap active tab
		$('#actions a').removeClass('active');
		$(this).addClass('active');
				
		var newimage = $(this).attr("href");
		$('#actions img').attr("src", newimage);

		// fade our current image, fade in new
		// $('#actions img').fadeOut(300);
		// $('#actions img').animate({opacity: 1.0}, 300).fadeIn(300);
		
		return false;

	});

});
