DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">



<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
      lang="en">

  <head>

<script type="text/javascript" src="/static/js/analytics.js" ></script>
<link type="text/css" rel="stylesheet" href="/static/css/banner_styles.css"/>




    <meta http-equiv="Content-Type"
          content="text/html;charset=utf-8" />

    <title>
        Longview Institute
        &mdash;
        Longview Institute
    </title>

    
      
        <base href="/index.html" />
      
    

    <meta name="generator" content="Plone - http://plone.org" />


    <!-- Plone ECMAScripts -->
    
      
        
            
                <script type="text/javascript"
                        src="/portal_javascripts/Plone%20Default/ploneScripts4056.js">
                </script>
                
            
            
                <script type="text/javascript"
                        src="/portal_javascripts/Plone%20Default/ploneScripts9230.js">
                </script>
                
            
            
                <script type="text/javascript"
                        src="/portal_javascripts/Plone%20Default/ploneScripts2628.js">
                </script>
                
            
            
                <script type="text/javascript"
                        src="/portal_javascripts/Plone%20Default/ploneScripts2395.js">
                </script>
                
            
            
                <script type="text/javascript"
                        src="/portal_javascripts/Plone%20Default/ploneScripts2955.js">
                </script>
                
            
        
    
    

    
	
          
        
            
                
                    
                    
                        <style type="text/css"
    media="screen"><!-- @import url(/portal_css/Plone%20Default/ploneStyles5118.css); --></style>
                    
                    
                
            
            
                
                    
                    
                        <style type="text/css"><!-- @import url(/portal_css/Plone%20Default/ploneStyles8793.css); --></style>
                    
                    
                
            
            
                
                    <link rel="alternate stylesheet"
                          type="text/css" media="screen"
                          href="/portal_css/Plone%20Default/ploneStyles2258.css"
                          title="Small Text" />
                    
                    
                
            
            
                
                    <link rel="alternate stylesheet"
                          type="text/css" media="screen"
                          href="/portal_css/Plone%20Default/ploneStyles1867.css"
                          title="Large Text" />
                    
                    
                
            
            
                
                    
                    
                        <style type="text/css" media="all"><!-- @import url(/portal_css/Plone%20Default/ploneStyles0480.css); --></style>
                    
                    
                
            
        
    
        
        
    

    <!-- Internet Explorer CSS Fixes -->
    <!--[if lt IE 7]>
        <style type="text/css" media="all">@import url(/IEFixes.css);</style>
    <![endif]-->

    <link rel="shortcut icon" type="image/x-icon"
          href="/favicon.ico" />

    <link rel="home" href="/index.html"
          title="Front page" />
    <link rel="search"
          href="/search_form/index.html"
          title="Search this site" />
    <link rel="author"
          href="/author/mcmahon/index.html"
          title="Author information" />
    <link rel="contents"
          href="/sitemap/index.html"
          title="Site Map" />

    

    

    

    

    <!-- Disable IE6 image toolbar -->
    <meta http-equiv="imagetoolbar" content="no" />

    
      
      
    

    

      
    
    
    
    


      
      
    

    
      
      
    

  </head>

  <body dir="ltr">
<!-- BEGIN WAYBACK TOOLBAR INSERT -->
<script> if (window.archive_analytics) { window.archive_analytics.values['server_name']="wwwb-app16.us.archive.org";}; </script>

<script type="text/javascript" src="/static/js/disclaim_element.js" ></script>
<script type="text/javascript" src="/static/js/graph_calc.js" ></script>
<script type="text/javascript" src="/static/jflot/jquery.min.js" ></script>
<script type="text/javascript">
//<![CDATA[
var firstDate = 820454400000;
var lastDate = 1420070399999;
var wbPrefix = "/web/";
var wbCurrentUrl = "http:\/\/www.longviewinstitute.org\/author\/jayaram";

var curYear = -1;
var curMonth = -1;
var yearCount = 18;
var firstYear = 1996;
var imgWidth = 475;
var yearImgWidth = 25;
var monthImgWidth = 2;
var trackerVal = "none";
var displayDay = "25";
var displayMonth = "Jul";
var displayYear = "2008";
var prettyMonths = ["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];

function showTrackers(val) {
	if(val == trackerVal) {
		return;
	}
	if(val == "inline") {
		document.getElementById("displayYearEl").style.color = "#ec008c";
		document.getElementById("displayMonthEl").style.color = "#ec008c";
		document.getElementById("displayDayEl").style.color = "#ec008c";		
	} else {
		document.getElementById("displayYearEl").innerHTML = displayYear;
		document.getElementById("displayYearEl").style.color = "#ff0";
		document.getElementById("displayMonthEl").innerHTML = displayMonth;
		document.getElementById("displayMonthEl").style.color = "#ff0";
		document.getElementById("displayDayEl").innerHTML = displayDay;
		document.getElementById("displayDayEl").style.color = "#ff0";
	}
   document.getElementById("wbMouseTrackYearImg").style.display = val;
   document.getElementById("wbMouseTrackMonthImg").style.display = val;
   trackerVal = val;
}
function getElementX2(obj) {
	var thing = jQuery(obj);
	if((thing == undefined) 
			|| (typeof thing == "undefined") 
			|| (typeof thing.offset == "undefined")) {
		return getElementX(obj);
	}
	return Math.round(thing.offset().left);
}
function trackMouseMove(event,element) {

   var eventX = getEventX(event);
   var elementX = getElementX2(element);
   var xOff = eventX - elementX;
	if(xOff < 0) {
		xOff = 0;
	} else if(xOff > imgWidth) {
		xOff = imgWidth;
	}
   var monthOff = xOff % yearImgWidth;

   var year = Math.floor(xOff / yearImgWidth);
	var yearStart = year * yearImgWidth;
   var monthOfYear = Math.floor(monthOff / monthImgWidth);
   if(monthOfYear > 11) {
       monthOfYear = 11;
   }
   // 1 extra border pixel at the left edge of the year:
   var month = (year * 12) + monthOfYear;
   var day = 1;
	if(monthOff % 2 == 1) {
		day = 15;
	}
	var dateString = 
		zeroPad(year + firstYear) + 
		zeroPad(monthOfYear+1,2) +
		zeroPad(day,2) + "000000";

	var monthString = prettyMonths[monthOfYear];
	document.getElementById("displayYearEl").innerHTML = year + 1996;
	document.getElementById("displayMonthEl").innerHTML = monthString;
	// looks too jarring when it changes..
	//document.getElementById("displayDayEl").innerHTML = zeroPad(day,2);

	var url = wbPrefix + dateString + '/index.html' +  wbCurrentUrl;
	document.getElementById('wm-graph-anchor').href = url;

   //document.getElementById("wmtbURL").value="evX("+eventX+") elX("+elementX+") xO("+xOff+") y("+year+") m("+month+") monthOff("+monthOff+") DS("+dateString+") Moy("+monthOfYear+") ms("+monthString+")";
   if(curYear != year) {
       var yrOff = year * yearImgWidth;
       document.getElementById("wbMouseTrackYearImg").style.left = yrOff + "px";
       curYear = year;
   }
   if(curMonth != month) {
       var mtOff = year + (month * monthImgWidth) + 1;
       document.getElementById("wbMouseTrackMonthImg").style.left = mtOff + "px";
       curMonth = month;
   }
}
//]]>
</script>

<style type="text/css">body{margin-top:0!important;padding-top:0!important;min-width:800px!important;}#wm-ipp a:hover{text-decoration:underline!important;}</style>
<div id="wm-ipp" lang="en" class="__wb_banner_div" style="display:none; position:relative;padding:0 5px;min-height:70px;min-width:800px">


<div id="wm-ipp-inside" class="__wb_banner_div" style="position:fixed;padding:0!important;margin:0!important;width:97%;min-width:780px;border:5px solid #000;border-top:none;background-image:url(/static/images/toolbar/wm_tb_bk_trns.png);text-align:center;-moz-box-shadow:1px 1px 3px #333;-webkit-box-shadow:1px 1px 3px #333;box-shadow:1px 1px 3px #333;font-size:11px!important;font-family:'Lucida Grande','Arial',sans-serif!important;">
   <table style="border-collapse:collapse;margin:0;padding:0;width:100%;"><tbody><tr>
   <td style="padding:10px;vertical-align:top;min-width:110px;">
   <a href="/web/" title="Wayback Machine home page" style="background-color:transparent;border:none;"><img src="/static/images/toolbar/wayback_toolbar_logo.png" alt="Wayback Machine" width="110" height="39" border="0"/></a>
   </td>
   <td style="padding:0!important;text-align:center;vertical-align:top;width:100%;">

       <table style="border-collapse:collapse;margin:0 auto;padding:0;width:570px;"><tbody><tr>
       <td style="padding:3px 0;" colspan="2">
       <form target="_top" method="get" action="/web/form-submit.jsp" name="wmtb" id="wmtb" style="margin:0!important;padding:0!important;"><input type="text" name="url" id="wmtbURL" value="/author/jayaram/index.css" style="width:400px;font-size:11px;font-family:'Lucida Grande','Arial',sans-serif;" onfocus="javascript:this.focus();this.select();" /><input type="hidden" name="type" value="replay" /><input type="hidden" name="date" value="20080725000718" /><input type="submit" value="Go" style="font-size:11px;font-family:'Lucida Grande','Arial',sans-serif;margin-left:5px;width: inherit !important" /><span id="wm_tb_options" style="display:block;"></span></form>
       </td>
       <td style="vertical-align:bottom;padding:5px 0 0 0!important;" rowspan="2">
           <table style="border-collapse:collapse;width:110px;color:#99a;font-family:'Helvetica','Lucida Grande','Arial',sans-serif;"><tbody>
			
           <!-- NEXT/PREV MONTH NAV AND MONTH INDICATOR -->
           <tr style="width:110px;height:16px;font-size:10px!important;">
           	<td style="padding-right:9px;font-size:11px!important;font-weight:bold;text-transform:uppercase;text-align:right;white-space:nowrap;overflow:visible;" nowrap="nowrap">
               
		                <a href="/author/jayaram/index.css" style="text-decoration:none;color:#33f;font-weight:bold;background-color:transparent;border:none;" title="9 Mar 2008"><strong>MAR</strong></a>
		                
               </td>
               <td id="displayMonthEl" style="background:#000;color:#ff0;font-size:11px!important;font-weight:bold;text-transform:uppercase;width:34px;height:15px;padding-top:1px;text-align:center;" title="You are here: 0:07:18 Jul 25, 2008">JUL</td>
				<td style="padding-left:9px;font-size:11px!important;font-weight:bold;text-transform:uppercase;white-space:nowrap;overflow:visible;" nowrap="nowrap">
               
		                <a href="/author/jayaram/index.css" style="text-decoration:none;color:#33f;font-weight:bold;background-color:transparent;border:none;" title="2 May 2009"><strong>MAY</strong></a>
		                
               </td>
           </tr>

           <!-- NEXT/PREV CAPTURE NAV AND DAY OF MONTH INDICATOR -->
           <tr>
               <td style="padding-right:9px;white-space:nowrap;overflow:visible;text-align:right!important;vertical-align:middle!important;" nowrap="nowrap">
               
		                <a href="/author/jayaram/index.css" title="9:42:14 Mar 9, 2008" style="background-color:transparent;border:none;"><img src="/static/images/toolbar/wm_tb_prv_on.png" alt="Previous capture" width="14" height="16" border="0" /></a>
		                
               </td>
               <td id="displayDayEl" style="background:#000;color:#ff0;width:34px;height:24px;padding:2px 0 0 0;text-align:center;font-size:24px;font-weight: bold;" title="You are here: 0:07:18 Jul 25, 2008">25</td>
				<td style="padding-left:9px;white-space:nowrap;overflow:visible;text-align:left!important;vertical-align:middle!important;" nowrap="nowrap">
               
		                <a href="/author/jayaram/index.css" title="14:20:21 May 2, 2009" style="background-color:transparent;border:none;"><img src="/static/images/toolbar/wm_tb_nxt_on.png" alt="Next capture" width="14" height="16" border="0"/></a>
		                
			    </td>
           </tr>

           <!-- NEXT/PREV YEAR NAV AND YEAR INDICATOR -->
           <tr style="width:110px;height:13px;font-size:9px!important;">
				<td style="padding-right:9px;font-size:11px!important;font-weight: bold;text-align:right;white-space:nowrap;overflow:visible;" nowrap="nowrap">
               
		                <a href="/author/jayaram/index.css" style="text-decoration:none;color:#33f;font-weight:bold;background-color:transparent;border:none;" title="8 Jul 2007"><strong>2007</strong></a>
		                
               </td>
               <td id="displayYearEl" style="background:#000;color:#ff0;font-size:11px!important;font-weight: bold;padding-top:1px;width:34px;height:13px;text-align:center;" title="You are here: 0:07:18 Jul 25, 2008">2008</td>
				<td style="padding-left:9px;font-size:11px!important;font-weight: bold;white-space:nowrap;overflow:visible;" nowrap="nowrap">
               
		                <a href="/author/jayaram/index.css" style="text-decoration:none;color:#33f;font-weight:bold;background-color:transparent;border:none;" title="14 Sep 2009"><strong>2009</strong></a>
		                
				</td>
           </tr>
           </tbody></table>
       </td>

       </tr>
       <tr>
       <td style="vertical-align:middle;padding:0!important;">
           <a href="/author/jayaram/index.css" style="color:#33f;font-size:11px;font-weight:bold;background-color:transparent;border:none;" title="See a list of every capture for this URL"><strong>24 captures</strong></a>
           <div class="__wb_banner_div" style="margin:0!important;padding:0!important;color:#666;font-size:9px;padding-top:2px!important;white-space:nowrap;" title="Timespan for captures of this URL">9 Dec 06 - 22 Dec 13</div>
       </td>
       <td style="padding:0!important;">
       <a style="position:relative; white-space:nowrap; width:475px;height:27px;" href="" id="wm-graph-anchor">
       <div class="__wb_banner_div" id="wm-ipp-sparkline" style="position:relative; white-space:nowrap; width:475px;height:27px;background-color:#fff;cursor:pointer;border-right:1px solid #ccc;" title="Explore captures for this URL">
			<img id="sparklineImgId" style="position:absolute; z-index:9012; top:0px; left:0px;"
				onmouseover="showTrackers('inline');" 
				onmouseout="showTrackers('none');"
				onmousemove="trackMouseMove(event,this)"
				alt="sparklines"
				width="475"
				height="27"
				border="0"
				src="graph.jsp?graphdata=475_27_1996:-1:000000000000_1997:-1:000000000000_1998:-1:000000000000_1999:-1:000000000000_2000:-1:000000000000_2001:-1:000000000000_2002:-1:000000000000_2003:-1:000000000000_2004:-1:000000000000_2005:-1:000000000000_2006:-1:000000000001_2007:-1:010001120100_2008:6:001000100000_2009:-1:000010001010_2010:-1:000000000010_2011:-1:000000200100_2012:-1:510000000000_2013:-1:000000000002_2014:-1:000000000000"></img>
			<img id="wbMouseTrackYearImg" 
				style="display:none; position:absolute; z-index:9010;"
				width="25" 
				height="27"
				border="0"
				src="/static/images/toolbar/transp_yellow_pixel.png"></img>
			<img id="wbMouseTrackMonthImg"
				style="display:none; position:absolute; z-index:9011; " 
				width="2"
				height="27" 
				border="0"
				src="/static/images/toolbar/transp_red_pixel.png"></img>
       </div>
		</a>

       </td>
       </tr></tbody></table>
   </td>
   <td style="text-align:right;padding:5px;width:65px;font-size:11px!important;">
       <a href="javascript:;" onclick="document.getElementById('wm-ipp').style.display='none';" style="display:block;padding-right:18px;background:url(/static/images/toolbar/wm_tb_close.png) no-repeat 100% 0;color:#33f;font-family:'Lucida Grande','Arial',sans-serif;margin-bottom:23px;background-color:transparent;border:none;" title="Close the toolbar">Close</a>
       <a href="http://faq.web.archive.org/" style="display:block;padding-right:18px;background:url(/static/images/toolbar/wm_tb_help.png) no-repeat 100% 0;color:#33f;font-family:'Lucida Grande','Arial',sans-serif;background-color:transparent;border:none;" title="Get some help using the Wayback Machine">Help</a>
   </td>
   </tr></tbody></table>

</div>
</div>
<script type="text/javascript">
 var wmDisclaimBanner = document.getElementById("wm-ipp");
 if(wmDisclaimBanner != null) {
   disclaimElement(wmDisclaimBanner);
 }
</script>
<!-- END WAYBACK TOOLBAR INSERT -->

    <div id="visual-portal-wrapper">

      <div id="portal-top">

        <div id="portal-header">
          <a class="hiddenStructure" accesskey="2"
             href="/author/jayaram/index.css">Skip to content.</a>

          <a class="hiddenStructure" accesskey="6"
             href="/author/jayaram/index.css">Skip to navigation</a>

             <div id="main-logo">

  

  
    <div style="width:100%;padding:0;margin:0">
        <div id="portal-searchbox">
    <form name="searchform"
          action="/search/index.html"
          style="white-space:nowrap"
          onsubmit="return liveSearchSubmit()">

        <label for="searchGadget" class="hiddenStructure">Search Site</label>

        <div class="LSBox">
        <input id="searchGadget" name="SearchableText"
               type="text" size="15" title="Search Site"
               accesskey="4" class="visibility:visible" />

        <input class="searchButton" type="submit"
               value="Search" />

        <div class="LSResult" id="LSResult" style=""><div class="LSShadow" id="LSShadow"></div></div>
        </div>
    </form>

    <div id="portal-advanced-search" class="hiddenStructure">
        <a href="/search_form/index.html"
           accesskey="5">
            Advanced Search&hellip;
        </a>
    </div>

</div>
        <table width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td style="vertical-align:bottom"><a
    href="/index.html"><img src="/longview_nlogo.gif" alt="Home" title="Longview Institute" height="115" width="529" /></a></td>
            <td style="vertical-align:bottom;text-align:right;padding:0 10px"><img src="/slogan.gif" alt="For the Public Good" title="For the Public Good" height="17" width="185" /></td>
          </tr>
        </table>
        
        
    </div>
  

  

</div>

             
    <h5 class="hiddenStructure">Sections</h5>

    <ul id="portal-globalnav">
        <li id="portaltab-index_html" class="selected">
            <a href="/index.html">Home</a></li>
        <li id="portaltab-aboutus" class="plain">
            <a href="/aboutus/index.html">About Us</a></li>
        <li id="portaltab-projects" class="plain">
            <a href="/projects/index.html">Projects</a></li>
        <li id="portaltab-people" class="plain">
            <a href="/people/index.html">People</a></li>
        <li id="portaltab-newsletter" class="plain">
            <a href="/newsletter/index.html">Newsletter</a></li>
        <li id="portaltab-research" class="plain">
            <a href="/research/index.html">Research</a></li>
        <li id="portaltab-bookstore" class="plain">
            <a href="/bookstore/index.html">Bookstore</a></li>
    </ul>

          </div>

           <div id="portal-breadcrumbs">

    <span id="breadcrumbs-you-are-here">You 
are here:</span>
    <a href="/index.html">Home</a>
    

</div>
      </div>

      <div class="visualClear"><!-- --></div>

      

      <table id="portal-columns">
        <tbody>
          <tr>
            
            <td id="portal-column-one">
              <div class="visualPadding">
                
                  

    
        

        
            
       
<dl class="portlet" id="portlet-navigation-tree">
    <dt class="portletHeader">
        <span class="portletTopLeft"></span>
        
        
        <a href="/sitemap/index.html"
           class="tile">Navigation</a>

           
        <span class="portletTopRight"></span>
    </dt>
    
    <dd class="portletItem lastItem">
        <ul class="portletNavigationTree navTreeLevel0">
            
              <li class="navTreeItem">
                   <div class="contenttype-plone-site">
                       <a class="navTreeCurrentItem visualIconPadding"
                          href="/index.html"
                          title="">
                       Home
                       </a>
                   </div>
               </li>
               
            
            
                

<li class="navTreeItem visualNoMarker">

    

    <div class="contenttype-folder">
        
        
        <a href="/aboutus/index.html"
           class="state-published visualIconPadding"
           title="The Rockridge Institute is a group of distinguished scholars and researchers working to help achieve a just, democratic, environmentally sustainable, and humane society.">About Us</a>
        
    </div>

    
    
</li>


<li class="navTreeItem visualNoMarker">

    

    <div class="contenttype-folder">
        
        
        <a href="/projects/index.html"
           class="state-published visualIconPadding"
           title="The goals of the Longview Institute are ambitious, but we have developed a concrete set of founding initiatives that lay out clear and attainable objectives. We are confident that these initiatives will help us move toward our long-term goals.">Projects</a>
        
    </div>

    
    
</li>


<li class="navTreeItem visualNoMarker">

    

    <div class="contenttype-biofolder">
        
        
        <a href="/people/index.html"
           class="state-published visualIconPadding"
           title="Select a photo to display more information.">People</a>
        
    </div>

    
    
</li>


<li class="navTreeItem visualNoMarker">

    

    <div class="contenttype-folder">
        
        
        <a href="/perspectives/index.html"
           class="state-published visualIconPadding"
           title="This is a selection of key Longview documents from the newest to the oldest. ">Perspectives</a>
        
    </div>

    
    
</li>


<li class="navTreeItem visualNoMarker">

    

    <div class="contenttype-folder">
        
        
        <a href="/news_items/index.html"
           class="state-published visualIconPadding"
           title="">News</a>
        
    </div>

    
    
</li>


<li class="navTreeItem visualNoMarker">

    

    <div class="contenttype-folder">
        
        
        <a href="/contact/index.html"
           class="state-published visualIconPadding"
           title="Contact Longview with suggestions, job inquiries and booking requests.">Contact Longview</a>
        
    </div>

    
    
</li>


<li class="navTreeItem visualNoMarker">

    

    <div class="contenttype-folder">
        
        
        <a href="/newsletter/index.html"
           class="state-published visualIconPadding"
           title="">Newsletter</a>
        
    </div>

    
    
</li>


<li class="navTreeItem visualNoMarker">

    

    <div class="contenttype-folder">
        
        
        <a href="/research/index.html"
           class="state-published visualIconPadding"
           title="">Research</a>
        
    </div>

    
    
</li>


<li class="navTreeItem visualNoMarker">

    

    <div class="contenttype-bookfolder">
        
        
        <a href="/bookstore/index.html"
           class="state-published visualIconPadding"
           title="Here you can find a selection of titles by Longview scholars. ">The Longview Bookstore</a>
        
    </div>

    
    
</li>


            
        </ul>
        <span class="portletBottomLeft"></span>
        <span class="portletBottomRight"></span>
    </dd>
</dl>


        

        

        
    
    
        

        
            
        

        

        
    
    
        

        
            <div>

    <dl class="portlet" id="portlet-issues">

      <dt class="portletHeader">
          <span class="portletTopLeft"></span>
          <a href="/research/index.html"
             class="tile">Issues</a>
          <span class="portletTopRight"></span>
      </dt>

        <dd class="portletItem odd">

            

                <div class="issuesContent">
                    <a href="/research/index_Subject_Culture.html">Culture</a>
                </div>

            
            

                <div class="issuesContent">
                    <a href="/research/index_Subject_Economy.html">Economy</a>
                </div>

            
            

                <div class="issuesContent">
                    <a href="/research/index_Subject_Education.html">Education</a>
                </div>

            
            

                <div class="issuesContent">
                    <a href="/research/index_Subject_Elections.html">Elections</a>
                </div>

            
            

                <div class="issuesContent">
                    <a href="/research/index_Subject_Environment.html">Environment</a>
                </div>

            
            

                <div class="issuesContent">
                    <a href="/research/index_Subject_FamilyValues.html">Family Values</a>
                </div>

            
            

                <div class="issuesContent">
                    <a href="/research/index_Subject_ForeignPolicy.html">Foreign Policy</a>
                </div>

            
            

                <div class="issuesContent">
                    <a href="/research/index_Subject_Framing.html">Framing</a>
                </div>

            
            

                <div class="issuesContent">
                    <a href="/research/index_Subject_Gender.html">Gender</a>
                </div>

            
            

                <div class="issuesContent">
                    <a href="/research/index_Subject_Health.html">Health</a>
                </div>

            
            

                <div class="issuesContent">
                    <a href="/research/index_Subject_Labor.html">Labor</a>
                </div>

            
            

                <div class="issuesContent">
                    <a href="/research/index_Subject_Media.html">Media</a>
                </div>

            
            

                <div class="issuesContent">
                    <a href="/research/index_Subject_NationalSecurity.html">National Security</a>
                </div>

            
            

                <div class="issuesContent">
                    <a href="/research/index_Subject_Race.html">Race</a>
                </div>

            
            

                <div class="issuesContent">
                    <a href="/research/index_Subject_TheProgressiveVision.html">The Progressive Vision</a>
                </div>

            
            

                <div class="issuesContent">
                    <a href="/research/index_Subject_SocialSecurity.html">Social Security</a>
                </div>

            

        </dd>

    </dl>

</div>
        

        

        
    
    
        

        
            
        

        

        
    

                
                &nbsp;
              </div>
            </td>
            

            
            <td id="portal-column-content">

              
    

        

        
 
    <div id="content" class="">

        
        
        

        

        <div class="documentContent" id="region-content">

            <a name="documentContent"></a>
                    
            <!-- Author information -->
            <h1 class="documentFirstHeading">Athmeya Jayaram</h1>

            

            <div class="discreet">
                

                
            </div>

            <img src="/defaultUser.gif"
                 alt="" class="portraitPhoto" width="75"
                 height="100"
                 style="float: left; margin: 1em;" />
                      

            <div class="documentDescription">The Longview Institute is a group of distinguished scholars and researchers working to help achieve a just, democratic, environmentally sustainable, and humane society.</div>

            <div class="visualClear"><!-- --></div>
            
            <p>
            <a href="/Members/jayaram/index.html">Author's home page in this site&hellip;</a>
            </p>

            

            <div class="formControls">
            <form action="/login_form/index.html">
               <input class="standalone" type="submit"
                      value="Log in to send feedback" />
            </form>
            </div>


            <!-- feedback form -->        
            
            <!-- listing of content created by this user -->
        
            
        
                <h2>
                    Latest content created by this user
                </h2>
                
                <div>
                <table class="listing"
                       summary="Lists content written by an author grouped by content type">
                    
                      		
                        <tr>
                            <th colspan="2">Article</th>
                        </tr>
                        
                            <tr>
                                <td>
                                    <a
    href="/projects/marketfundamentalism/myth3/index.html">Market Myth No. 3:  Regulation of business is wasteful, unproductive and usually unnecessary</a>
                                </td>
                                <td>10-09-2007</td>
                            </tr>
                        
                        
                            <tr>
                                <td>
                                    <a
    href="/research/rosen/carecrisisfull/index.html">The Care Crisis</a>
                                </td>
                                <td>03-15-2007</td>
                            </tr>
                        
                        
                            <tr>
                                <td>
                                    <a
    href="/projects/marketfundamentalism/myth2/index.html">Market Myth Two</a>
                                </td>
                                <td>03-27-2007</td>
                            </tr>
                        
                        
                            <tr>
                                <td>
                                    <a
    href="/research/rosen/thirstreview/index.html">And You're Worried About Oil?</a>
                                </td>
                                <td>03-20-2007</td>
                            </tr>
                        
                        
                            <tr>
                                <td>
                                    <a
    href="/projects/marketfundamentalism/taxol/index.html">The Development of a Key Cancer Drug: Taxol</a>
                                </td>
                                <td>02-09-2007</td>
                            </tr>
                        
                      
                    
                    
                      		
                        <tr>
                            <th colspan="2">Page</th>
                        </tr>
                        
                            <tr>
                                <td>
                                    <a
    href="/projects/marketfundamentalism/marketfundamentalism/index.html">Market Fundamentalism</a>
                                </td>
                                <td>01-17-2007</td>
                            </tr>
                        
                        
                            <tr>
                                <td>
                                    <a
    href="/projects/genderpolicy/gppoverview/index.html">Gender and Public Policy</a>
                                </td>
                                <td>01-29-2007</td>
                            </tr>
                        
                        
                            <tr>
                                <td>
                                    <a
    href="/projects/marketfundamentalism/mythone/index.html">Market Myth One</a>
                                </td>
                                <td>01-24-2007</td>
                            </tr>
                        
                        
                            <tr>
                                <td>
                                    <a
    href="/projects/moral/meoverview/index.html">Moral Economy</a>
                                </td>
                                <td>01-30-2007</td>
                            </tr>
                        
                        
                            <tr>
                                <td>
                                    <a
    href="/projects/marketfundamentalism/mffaq/index.html">Market Fundamentalism: Frequently Asked Questions</a>
                                </td>
                                <td>01-17-2007</td>
                            </tr>
                        
                      
                    
                    
                      		
                        <tr>
                            <th colspan="2">File</th>
                        </tr>
                        
                            <tr>
                                <td>
                                    <a
    href="/news_items/domesticiraq/index.html">Fred Block: Why is the U.S. Fighting in Iraq?</a>
                                </td>
                                <td>09-10-2007</td>
                            </tr>
                        
                        
                            <tr>
                                <td>
                                    <a
    href="/research/block/domesticiraq/index.html">Fred Block: Why is the U.S. Fighting in Iraq?</a>
                                </td>
                                <td>09-10-2007</td>
                            </tr>
                        
                      
                    
                    
                      		
                        <tr>
                            <th colspan="2">Folder</th>
                        </tr>
                        
                            <tr>
                                <td>
                                    <a
    href="/projects/marketfundamentalism/index.html">Market Fundamentalism</a>
                                </td>
                                <td>01-17-2007</td>
                            </tr>
                        
                        
                            <tr>
                                <td>
                                    <a
    href="/projects/genderpolicy/index.html">Gender and Public Policy</a>
                                </td>
                                <td>01-29-2007</td>
                            </tr>
                        
                      
                    
                    
                      		
                        <tr>
                            <th colspan="2">News File</th>
                        </tr>
                        
                            <tr>
                                <td>
                                    <a
    href="/research/duster/lessonsfrom/index.html">Troy Duster: Lessons from History: Why Race and Ethnicity Have Played A Major Role in Biomedical Research</a>
                                </td>
                                <td>07-17-2007</td>
                            </tr>
                        
                        
                            <tr>
                                <td>
                                    <a
    href="/research/duster/molecularreinscription/index.html">Troy Duster: The molecular reinscription of race: unanticipated issues in biotechnology and forensic science</a>
                                </td>
                                <td>07-17-2007</td>
                            </tr>
                        
                        
                            <tr>
                                <td>
                                    <a
    href="/research/joffe/religiousrightandsexuality/index.html">The Religious Right and the Reshaping of Sexual Policy - An Examination of Reproductive Rights and Sexuality Education</a>
                                </td>
                                <td>04-15-2007</td>
                            </tr>
                        
                      
                    
                    
                      		
                        <tr>
                            <th colspan="2">News Link</th>
                        </tr>
                        
                            <tr>
                                <td>
                                    <a
    href="/news_items/blindlybubble/index.html">Paul Krugman: Blindly into the Bubble</a>
                                </td>
                                <td>12-23-2007</td>
                            </tr>
                        
                        
                            <tr>
                                <td>
                                    <a
    href="/research/rosen/usiranwarofwords/index.html">Ruth Rosen: What's fueled the U.S.-Iran war of words?</a>
                                </td>
                                <td>10-24-2007</td>
                            </tr>
                        
                        
                            <tr>
                                <td>
                                    <a
    href="/research/rosen/softcrimes/index.html">Ruth Rosen: Soft Crimes Against Democracy - What Ever Happened to Freedom of Information?</a>
                                </td>
                                <td>09-07-2007</td>
                            </tr>
                        
                        
                            <tr>
                                <td>
                                    <a
    href="/research/joffe/bushandschip/index.html">Carole Joffe: Bush and SCHIP: It’s Also About Fetuses</a>
                                </td>
                                <td>08-07-2007</td>
                            </tr>
                        
                        
                            <tr>
                                <td>
                                    <a
    href="/research/wallack/retellingstory/index.html">Lawrence Wallack: Retelling the American story</a>
                                </td>
                                <td>07-17-2007</td>
                            </tr>
                        
                      
                    
                    
                      		
                        <tr>
                            <th colspan="2">News Item</th>
                        </tr>
                        
                            <tr>
                                <td>
                                    <a
    href="/research/joffe/grovelingforchoice/index.html">Groveling for Choice: What Good Doctors Will Do</a>
                                </td>
                                <td>11-12-2007</td>
                            </tr>
                        
                        
                            <tr>
                                <td>
                                    <a
    href="/projects/moral/inmex/index.html">One Step Toward a Moral Economy</a>
                                </td>
                                <td>09-29-2006</td>
                            </tr>
                        
                        
                            <tr>
                                <td>
                                    <a
    href="/news_items/militaryopposition/index.html">Ruth Rosen: Military Opposition - Bravery by Another Name</a>
                                </td>
                                <td>06-27-2006</td>
                            </tr>
                        
                        
                            <tr>
                                <td>
                                    <a
    href="/news_items/inmex/index.html">One Step Toward a Moral Economy</a>
                                </td>
                                <td>06-29-2006</td>
                            </tr>
                        
                        
                            <tr>
                                <td>
                                    <a
    href="/research/rosen/wtcbiglie/index.html">Ruth Rosen: Oliver Stone, 9/11, and the Big Lie</a>
                                </td>
                                <td>08-22-2006</td>
                            </tr>
                        
                      
                    
                </table>
                </div>

                <a href="http://www.longviewinstitute.org/search?Creator=jayaram&amp;sort_on=Date&amp;sort_order=reverse">
                    All content created by 
                    Athmeya Jayaram&hellip;
                </a>

            

        </div>
    </div> <!-- end simulated tabs -->
        
    

    


            </td>
            

            
            <td id="portal-column-two">
              <div class="visualPadding">
                
                  

    
        

        
            
        

        

        
    
    
        

        
            <div>

    <dl class="portlet" id="portlet-voices">

        <dt class="portletHeader">
            <span class="portletTopLeft"></span>
            <a href="/perspectives/voices/index.html"
               class="tile">Great Transformations</a>
            <span class="portletTopRight"></span>
        </dt>

        <dd class="portletItem odd">
        
            <div style="font-weight:bold;font-size:larger;text-align:center;margin-bottom:0.5em">
               Please visit <a href="http://www.greattransformations.org/">greattransformations.org</a>
               for more on alternatives to market fundamentalism.
            </div>

        </dd>

    </dl>

</div>
        

        

        
    
    
        

        
            <div>

    <dl class="portlet" id="portlet-voices">

        <dt class="portletHeader">
            <span class="portletTopLeft"></span>
            <a href="/perspectives/voices/index.html"
               class="tile">Voices</a>
            <span class="portletTopRight"></span>
        </dt>

        <dd class="portletItem odd">
        
            <div style="font-weight:bold;font-size:larger;text-align:center;margin-bottom:0.5em"><a
    href="/perspectives/voices/index.html">Amplifying Progressive Voices,  Values to Live By</a></div>
            <div>Some recent writings by colleagues that we want to share with you.</div>
            <a class="portletMore"
               href="/perspectives/voices/index.html">More...</a>

        </dd>

    </dl>

</div>
        

        

        
    
    
        

        
            <div>

    <dl class="portlet" id="portlet-news">

        <dt class="portletHeader">
            <span class="portletTopLeft"></span>
            <a href="/news_items/index.html"
               class="tile">News</a>
            <span class="portletTopRight"></span>
        </dt>

        <dd class="portletItem odd">

            

                <div class="portletContent">

                    <a href="/itifinnovations/index.html"
                       title="In this report published by the Information Technology &amp; Innovation Foundation, Fred Block and Matthew Keller show how the nature of the U.S. innovation system has changed dramatically over the course of the last 40 years. The authors analyze a sample of innovations recognized by R&amp;D Magazine as being among the top 100 innovations of the year over the last four decades.">
                        Fred Block and Matthew Keller: Where Do Innovations Come From? Transformations in the U.S. National Innovation System, 1970-2006
                    </a>

                    <div class="portletDetails">07-09-2008</div>
                </div>

            
            

                <div class="portletContent">

                    <a href="/populistvision/index.html"
                       title="Do the socially progressive ideals that jump-started 20th-century reform movements have lessons
relevant to the concerns of 21st-century America? A new book makes a strong case that they do.">
                        Book Review: Ruth Rosen on Charles Postel's The Populist Vision
                    </a>

                    <div class="portletDetails">07-09-2008</div>
                </div>

            
            

                <div class="portletContent">

                    <a href="/nosuchthing/index.html"
                       title="The New York Sun recently published a critical &quot;reconsideration&quot; of Karl Polanyi's mid-20th Century text, The Great Transformation.  Fred Block shows that the issues are not academic but are critically relevant for today's political and economic debates.">
                        No Such Thing as a Free Market
                    </a>

                    <div class="portletDetails">06-11-2008</div>
                </div>

            
            

                <div class="portletContent">

                    <a href="/rosentalesfrominside/index.html"
                       title="In this TPM Cafe piece, Ruth Rosen reflects on the pressure she and other members of the media felt to suppress their skepticism about the Bush administration's rationale to go to war.">
                        Ruth Rosen: Tales From Inside the Editorial Board Room   
                    </a>

                    <div class="portletDetails">06-07-2008</div>
                </div>

            
            

                <div class="portletContent">

                    <a href="/blockstealth/index.html"
                       title="Fred Block writes in Miller-McCune that free marketers want the government off business's back, but may not realize how much of the spine is government funded.">
                        Fred Block: America's Stealth Industrial Policy
                    </a>

                    <div class="portletDetails">06-03-2008</div>
                </div>

            

            <div class="portletContent odd">

                <a href="/news_items/index.html"
                   class="portletMore">
                    More...
                </a>

            </div>

        </dd>

    </dl>

</div>
        

        

        
    
    
        

        
            
        

        

        
    

                
                &nbsp;
              </div>
            </td>
            
          </tr>
        </tbody>
      </table>
      

      <div class="visualClear"><!-- --></div>


      <hr class="netscape4" />

      

        <div align="center" id="portal-footer">
     
<div style="margin-top:0.5em">
<a href="/contact/index.html">Contact Us</a>
<!--
&#8226;
<a href="https://secure.groundspring.org/dn/index.php?id=2299">Support Rockridge</a>
-->
</div>

<div class="discreet" style="margin-left:15%;margin-right:15%;margin-top:0.5em;color:#444">
The Longview Institute is a project of the Tides Center, a tax exempt research and educational institution organization operating under Section 501(c)(3) of the IRS Code. Our mission is to advance public policies leading to a more just, democratic, environmentally sustainable, and humane society. We do not endorse or oppose any particular candidate or party.
</div>

</div>

        <div id="portal-colophon">
   <ul id="portal-siteactions">

    <li id="siteaction-sitemap"><a
    href="/sitemap/index.html"
    accesskey="3" title="Site Map">Site Map</a></li>
    <li id="siteaction-accessibility"><a
    href="/accessibility_info/index.html"
    accesskey="0" title="Accessibility">Accessibility</a></li>
    <li id="siteaction-contact"><a
    href="/contact/index.html"
    accesskey="9" title="Contact">Contact</a></li>

</ul>

  <div id="portal-personaltools-wrapper">

<h5 class="hiddenStructure">Personal tools</h5>

<ul id="portal-personaltools">
   


</ul>
</div>
<!-- 

 The Longview Institute site is built on the open-source Plone content management framework,
 customized and managed by Reid-McMahon, LLC (http://www.reidmcmahon.com). 
 Plone and its visual design, Copyright &copy; 2000-2003
 by Alexander Limi, Alan Runyan, Vidar Andersen.
 Plone (http://www.plone.org) is powered by the combined forces of Zope and CMF, 
 systems made by Zope Corporation (http://zope.com) and they in turn
 are based on Python (http://www.python.org).
     
-->
</div>
      

    </div>

</body>
</html>







<!--
     FILE ARCHIVED ON 0:07:18 Jul 25, 2008 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 16:50:43 Jun 2, 2014.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
-->
