<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Home</title>
	<atom:link href="http://www.naturalgen.co.uk/home/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.naturalgen.co.uk</link>
	<description>Renewable Energy Solutions in Cornwall</description>
	<lastBuildDate>Fri, 29 Jul 2011 17:56:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
</channel>
</rss>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html dir="ltr" lang="en-US" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/" ><head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="google-site-verification" content="ZhTtjbtIIubxQy4O_kIMsBYVesF7NoV32x2QpP4ybMI" />

<title>
Natural Generation &#8211; Renewable Energy Solutions in Cornwall</title>

<link href="http://www.naturalgen.co.uk/css/reset.css" rel="stylesheet" type="text/css" />
<link href="http://www.naturalgen.co.uk/css/styles.css" rel="stylesheet" type="text/css" />
<link href="http://www.naturalgen.co.uk/library/niftyCorners.css" rel="stylesheet" type="text/css" />


<!--[if gte IE 7 ]>
     	<link rel="stylesheet" type="text/css" href="http://www.naturalgen.co.uk/css/ie8.css" />
    <![endif]-->

<!--[if IE 7 ]>
     	<link rel="stylesheet" type="text/css" href="http://www.naturalgen.co.uk/css/ie7.css" />
    <![endif]-->
    
    
    <script type="text/javascript">
var __stormJs = 't1.stormiq.com/dcv4/jslib/3426_477BD92C_5C9D_40FB_956B_4982B2F6907C.js';
</script>
<script type="text/javascript" src="http://www.naturalgen.co.uk/track.js"></script>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script>

<script src="http://www.naturalgen.co.uk/library/niftycube.js" type="text/javascript"></script>
<script src="http://www.naturalgen.co.uk/library/js/jquery.twitter.js" type = "text/javascript"></script>
<script src="http://www.naturalgen.co.uk/library/js/jquery-ui-1.8.5.custom.min.js" type = "text/javascript"></script>

<script type="text/javascript">
	
	$(document).ready(function() {
					
		$('.mainmenu li:first').addClass('first');
		$('.mainmenu li:last').addClass('last');
		
		$("#twitter .inner .load").getTwitter({
			userName: "naturalgen",
			numTweets: 5,
			loaderText: "Loading tweets...",
			slideIn: false,
			showHeading: false,
			headingText: "Latest Tweets",
			showProfileLink: false
		});
		
		Nifty("#rightbox","big");
		Nifty("#twitter","big");
		Nifty(".sideblog","big");
		Nifty("#morecs","big");
		Nifty("#latenews","big");
		
	
		//$( "#results" ).accordion();
	
		$("#fitform	").validate();


		
	});
	
</script>

  <script type="text/javascript" src="http://www.naturalgen.co.uk/library/js/jquery.validate.js"></script>
  <script type="text/javascript" src = "https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.7/jquery-ui.min.js"></script>

<script type="text/javascript" >

	$(document).ready(function(){

		$('#fitform').submit(function() {
			$('#annual li span').fadeOut();
			$('#years li span').fadeOut();
			
			annualsummary();
		  	return false;
		});
		
		$('#annual li span').fadeOut();
		$('#years li span').fadeOut();
		
		annualsummary();
	});


function annualsummary (){
	
			
		
			var pvp = $('#pvpower').val();
			
			var annualoutput = $('#annualoutput').val();
			var costperkwinstalled = $('#cpkwinstalled').val();
			
			var initialgrant = $('#initialgrant').val();
			var importtarrif = 15;
			
			var personalusage = $('#personalusage').val();
				
			var inputcosts = (pvp * costperkwinstalled) - initialgrant;
							
	
		$('#years li span').each(function(index) {

			//Grab variable from form
			
			if(yearly){inputcosts = yearly;} else { yearly = inputcosts;};
	
			$('#inputcostsspan').html('&pound;' + inputcosts).fadeIn();
			
			var fitincome = (annualoutput * pvp) * 0.413;
			$('#fitin').html('&pound;' + fitincome).fadeIn();
			
			var percentobesoldback = (100 - personalusage) / 100;
			var whatwedidntuse = annualoutput * percentobesoldback;
			var exportincome = (whatwedidntuse * 0.03) * pvp;
			$('#exportin').html('&pound;' + exportincome).fadeIn();
			
			var whatweusepercent = personalusage / 100;
			var whatweusedkw =  annualoutput * whatweusepercent;
			var importsavings = (whatweusedkw * 0.15) * pvp;
			$('#imsave').html('&pound;' + importsavings).fadeIn();
		
			var totalsavings = (fitincome + exportincome) + importsavings;
			$('#totalsavebox').html('&pound;' + totalsavings).fadeIn();
		
			var roi = (totalsavings / inputcosts) * 100;
			var roi = Math.round(roi * 100) / 100;
			$('#roibox').html(roi + '%').fadeIn();
			
			var yearly = (yearly - (index * totalsavings));
			var yearly = yearly - (yearly + yearly);
			var yearly = Math.round(yearly * 100) / 100;
						
			$(this).html('&pound;' + yearly);
		
			
		
		});	
		
		$('#years li span').fadeIn();
			$('#annual li span').fadeIn();
	
}


</script>


<script type="text/javascript">
var __stormJs = 't1.stormiq.com/dcv4/jslib/3426_477BD92C_5C9D_40FB_956B_4982B2F6907C.js';
</script>
<script type="text/javascript" src="/track.js"></script>

<link rel="alternate" type="application/rss+xml" title="Natural Generation - Renewable Energy Solutions in Cornwall &raquo; Home Comments Feed" href="http://www.naturalgen.co.uk/home/feed/" />

<link rel="stylesheet" href="http://www.naturalgen.co.uk/wp-content/plugins/fancybox-for-wordpress/css/fancybox.css" type="text/css" media="screen" />

	<style type="text/css">
		div#fancy_inner {border-color:#BBBBBB}
		div#fancy_close {right:-15px;top:-12px}
		div#fancy_bg {background-color:#FFFFFF}
			</style>

	<link rel='stylesheet' id='contact-form-7-css'  href='http://www.naturalgen.co.uk/wp-content/plugins/contact-form-7/styles.css?ver=2.4.1' type='text/css' media='all' />
<script type='text/javascript' src='http://www.naturalgen.co.uk/wp-includes/js/jquery/jquery.js?ver=1.4.2'></script>
<script type='text/javascript' src='http://www.naturalgen.co.uk/wp-content/plugins/fancybox-for-wordpress/js/jquery.fancybox-1.2.6.min.js?ver=1.3.2'></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.naturalgen.co.uk/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://www.naturalgen.co.uk/wp-includes/wlwmanifest.xml" /> 
<link rel='index' title='Natural Generation &#8211; Renewable Energy Solutions in Cornwall' href='http://www.naturalgen.co.uk/' />
<link rel='prev' title='Rose-in-Vale Hotel &#8211; Mithian &#8211; St. Agnes &#8211; Cornwall' href='http://www.naturalgen.co.uk/case-studies/solar-hot-water-case-studies/rose-in-vale-hotel-mithian-st-agnes/' />
<link rel='next' title='Wind Turbine Case Studies' href='http://www.naturalgen.co.uk/case-studies/wind-turbine-case-studies/' />
<meta name="generator" content="WordPress 3.0.1" />


<!-- Fancybox for WordPress v2.7.2 -->

<script type="text/javascript">

	jQuery.noConflict();

	jQuery(function(){

				jQuery.fn.getTitle = function() {
			var arr = jQuery("a.fancybox");
			jQuery.each(arr, function() {
				var title = jQuery(this).children("img").attr("title");
				jQuery(this).attr('title',title);
			})
		}

		// Supported file extensions
		var thumbnails = 'a:has(img)[href$=".bmp"],a:has(img)[href$=".gif"],a:has(img)[href$=".jpg"],a:has(img)[href$=".jpeg"],a:has(img)[href$=".png"],a:has(img)[href$=".BMP"],a:has(img)[href$=".GIF"],a:has(img)[href$=".JPG"],a:has(img)[href$=".JPEG"],a:has(img)[href$=".PNG"]';

	
		jQuery(thumbnails).addClass("fancybox").attr("rel","fancybox").getTitle();

			jQuery("a.fancybox").fancybox({
			'imageScale': true,
			'padding': 10,
			'zoomOpacity': true,
			'zoomSpeedIn': 500,
			'zoomSpeedOut': 500,
			'zoomSpeedChange': 300,
			'overlayShow': true,
			'overlayColor': "#666666",
			'overlayOpacity': 0.3,
			'enableEscapeButton': true,
			'showCloseButton': true,
			'hideOnOverlayClick': true,
			'hideOnContentClick': false,
			'frameWidth':  560,
			'frameHeight':  340,
			'callbackOnStart': null,
			'callbackOnShow': null,
			'callbackOnClose': null,
			'centerOnScroll': true
		});

})

</script>
<!-- END Fancybox for WordPress -->
<script src="http://www.naturalgen.co.uk/wp-content/plugins/faq-you/js/faq-frontend.js" type="text/javascript"></script><meta name="description" content="Natural Generation Ltd is dedicated to providing high quality and cost effective renewable energy solutions in Cornwall and the South West.  Being fully approved to design supply and install Photovoltaic Panels, Wind Turbines and Solar Hot Water Systems, we passionately believe that by taking responsibility for our environment we are taking ..."/>
		</head>

		<body>
        
        
        
	        
<div id = "bgtop">

<img src="http://www.naturalgeneration.co.uk/images/structure/top-curves.png" class = "curves"/> </div>

<div id = "container">
<div class = "inner">
          <div id = "header">
    <div class = "inner">
              <h1><a href = "http://www.naturalgen.co.uk/index.php">Natural Generation</a></h1>
              
			  	<a href = "http://www.naturalgen.co.uk/feed-in-tarrif/" id = "feedinbanner"><img src="http://www.naturalgen.co.uk/images/elements/common/feed-in-banner.png" width="496" height="112" /></a>
                <ul class = "mainmenu">
                    <li class="page_item page-item-43 current_page_item"><a href="http://www.naturalgen.co.uk/" title="Home">Home</a></li>
<li class="page_item page-item-6"><a href="http://www.naturalgen.co.uk/news/" title="News">News</a></li>
<li class="page_item page-item-596"><a href="http://www.naturalgen.co.uk/feed-in-tarrif/" title="Feed in Tariff">Feed in Tariff</a></li>
<li class="page_item page-item-14"><a href="http://www.naturalgen.co.uk/solar-hot-water/" title="Solar Hot Water">Solar Hot Water</a></li>
<li class="page_item page-item-12"><a href="http://www.naturalgen.co.uk/wind-turbines-2/" title="Wind Turbines">Wind Turbines</a></li>
<li class="page_item page-item-16"><a href="http://www.naturalgen.co.uk/solar-photovoltaic/" title="Solar PV">Solar PV</a></li>
<li class="page_item page-item-606"><a href="http://www.naturalgen.co.uk/installation-map/" title="Installations">Installations</a></li>
<li class="page_item page-item-22"><a href="http://www.naturalgen.co.uk/faqs/" title="FAQs">FAQs</a></li>
<li class="page_item page-item-25"><a href="http://www.naturalgen.co.uk/useful-links/" title="Links">Links</a></li>
<li class="page_item page-item-27"><a href="http://www.naturalgen.co.uk/contact-us/" title="Contact">Contact</a></li>
                </ul>

            </div>
  </div>
          <div id = "content">
                                    <div class="breadcrumb">
              </div>
                                                        <div class = "page">
        
                          
					<script type="text/javascript" src="http://www.naturalgen.co.uk/wp-content/plugins/superb-slideshow-gallery/inc/jquery.min.js"></script>
	<script type="text/javascript" src="http://www.naturalgen.co.uk/wp-content/plugins/superb-slideshow-gallery/inc/superb-slideshow-gallery.js"></script>
	
	<script type="text/javascript">
	var mygallery=new SuperbSlideshowGallery ({
	wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
	dimensions: [813, 350], //width/height of gallery in pixels. Should reflect dimensions of largest image
	imagearray: [ ["http://www.naturalgeneration.co.uk/wp-content/uploads/2010/11/slide11.jpg", "http://www.naturalgeneration.co.uk/wind-turbines-2/", "_self", ""],["http://www.naturalgeneration.co.uk/wp-content/uploads/2010/12/shw-rotator.jpg", "http://www.naturalgeneration.co.uk/solar-hot-water/", "_self", ""],["http://www.naturalgeneration.co.uk/wp-content/uploads/2010/11/slide2-pv.jpg", "http://www.naturalgen.co.uk/solar-photovoltaic/", "_self", ""] ],
	displaymode: {type:'auto', pause:5000, cycles:0, wraparound:false},
	persist: false, //remember last viewed slide and recall within same session?
	fadeduration: 500, //transition duration (milliseconds)
	descreveal: "always",
	togglerid: ""
	})
	</script>
	<div id="fadeshow1"></div>
                      
		                             
                 
                                                                                <div class="breadcrumb">
                      </div>
                                    <h2>Welcome to Natural Generation</h2>
                                                      
                  
                  
                  
                                     
                  
                  <div class = "sidebox">
                  <div id = "contactside">
                    	<a href = "http://www.naturalgen.co.uk/contact-us/"><img src = "http://www.naturalgen.co.uk/images/elements/contact-us.gif"/></a>
                    </div>
                    </div>
                  
				  <div id="rightbox" class="sideblog">
                    
                    <div class="inner">
                    
                    <h3>We offer</h3>
                    <ul>
                        <li>Supply and Installation of:
                    <ul>
                        <li>Wind turbines - both grid tied and off grid systems</li>
                        <li>Solar thermal hot water systems</li>
                        <li>Photovoltaic generation systems</li>
                    </ul>
                    </li>
                        <li>Individual energy efficiency and renewable energy project advice</li>
                        <li>System design, technical consultancy, and planning advice</li>
                        <li>Project management of integrated systems</li>
                    </ul>
                    </div>
                    </div>
                    
                     <div id = "twitter" class = "sideblog">
                      <div class = "inner">
                <h3>Natural Generation on Twitter</h3>
                <div class = "load"></div>
                <a id = "follow" href = "http://www.twitter.com/naturalgen" target = "_new">Follow @naturalgen on Twitter</a> </div>
                    </div>
                    
                    <div id = "facebox" class = "sideblog">
                    
					<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script>
                    <fb:like-box href="http://www.facebook.com/home.php?#!/pages/Saint-Agnes-United-Kingdom/Natural-Generation-Ltd/152614338104818" width="260" height="500" connections="5" stream="true" header="false"></fb:like-box>
                    </div>
                                        
                    				  
				  
				  
<p><strong>Natural Generation Ltd is dedicated to providing high quality and cost effective renewable energy solutions in Cornwall and the South West.  Being fully approved to design supply and install Photovoltaic Panels, Wind Turbines and Solar Hot Water Systems, we passionately believe that by taking responsibility for our environment we are taking responsibility for our own future.</strong></p>
<p>Our aim is to provide honest and independent advice on the most appropriate solution for each project as every customer will have different energy needs.  The time has come where we all need to be more aware of where our energy comes from and how precious it is.</p>
<p>The next step is to harness energy from the natural elements around us such as the wind and sun. This is where Natural Generation can help you to make positive changes for the future.   Now with the Government Feed in Tariff’s available there really has never been a better time to invest in your and all of our futures.</p>
<p>Natural Generation is fully MCS approved for the supply and installation of Photovoltaic Panels (PV), Wind Turbines and Solar Thermal hot water systems for both the domestic and commercial markets.</p>
<p>We are one the foremost renewable installation companies in the Southwest, having being established for over 5 years and with many hundreds of successful installations throughout Cornwall and Devon we are your natural choice for Photovoltaic, Wind Turbines or Solar Hot Water systems.</p>
<p>For a high quality and a well priced solution for your next PV, Wind Turbine or Solar Hot Water system trust a local company with the experience you need for an eco friendly and money generating system.</p>
<p style="text-align: center;"><a href="http://www.oursolarfuture.org.uk/"></a><a href="http://www.oursolarfuture.org.uk/"><img class="alignnone" title="Cut don't kill our industry" src="http://www.oursolarfuture.org.uk/wp-content/uploads/OSF_cutdontkill_300x250.jpg" alt="" width="300" height="250" /></a></p>
                  
                  
                  
                  
                  
<div id = "commentsbox">
</div>
                  
                  
                  
                  
                  
                  
                  
        
                                    <h2>Latest News</h2>
                  
                  <!-- FRONTPAGE NEWS -->
                  
                  
                  
                    						<div class = "post"><h4 class = "posttitle"><a href="http://www.naturalgen.co.uk/2011/06/our-largest-on-roof-thin-film-pv-installation-320kwp-bodmin/">
                    Our Largest On-Roof Thin Film PV Installation &#8211; 320kWp &#8211; Bodmin                    </a></h4>
                    <p><strong>Author:
                    Jamie                    | Date: Wednesday, February 22, 2012 |
                    2 Comments                    </strong></p>
                        <p>Natural Generation Ltd of St Agnes are delighted to have been awarded one of the largest on-roof installation of solar photovoltaic panels in Cornwall.  The installation of 320kWp from 4,000 panels has just begun and the scheme is beginning to &hellip;</p>
                        <p class = "meta"><strong>Filed under:
                    <a href="http://www.naturalgen.co.uk/category/news/national-generation/" title="View all posts in Natural Generation" rel="category tag">Natural Generation</a>,<a href="http://www.naturalgen.co.uk/category/news/" title="View all posts in News" rel="category tag">News</a>,<a href="http://www.naturalgen.co.uk/category/solar-generation/" title="View all posts in Solar Generation" rel="category tag">Solar Generation</a>                    |
                                        </strong></p>
                    
                    <a href = "http://www.naturalgen.co.uk/2011/06/our-largest-on-roof-thin-film-pv-installation-320kwp-bodmin/"><img class = "readmore-button" src="http://www.naturalgen.co.uk/images/elements/common/readmore-button.png" width="94" height="35" /></a>
						</div>
					  						<div class = "post"><h4 class = "posttitle"><a href="http://www.naturalgen.co.uk/2011/02/st-agnes-school-get-a-new-pv-system-installed/">
                    St Agnes School get a new PV System installed                    </a></h4>
                    <p><strong>Author:
                    Jamie                    | Date: Wednesday, February 22, 2012 |
                    No Comments                    </strong></p>
                        <p>The 9.99kW system designed and supplied by Natural Generation consists of 54 Sharp NU-185EI High performance monocrystalline silicon solar cell modules, and 3 SMA inverters converting the power for use in the School and exported to the National Grid is now LIVE, and even &hellip;</p>
                        <p class = "meta"><strong>Filed under:
                    <a href="http://www.naturalgen.co.uk/category/news/national-generation/" title="View all posts in Natural Generation" rel="category tag">Natural Generation</a>,<a href="http://www.naturalgen.co.uk/category/news/" title="View all posts in News" rel="category tag">News</a>,<a href="http://www.naturalgen.co.uk/category/solar-generation/" title="View all posts in Solar Generation" rel="category tag">Solar Generation</a>                    |
                                        </strong></p>
                    
                    <a href = "http://www.naturalgen.co.uk/2011/02/st-agnes-school-get-a-new-pv-system-installed/"><img class = "readmore-button" src="http://www.naturalgen.co.uk/images/elements/common/readmore-button.png" width="94" height="35" /></a>
						</div>
					  						<div class = "post"><h4 class = "posttitle"><a href="http://www.naturalgen.co.uk/2010/12/how-to-climb-an-endurance-tower/">
                    How to climb an Endurance Tower                    </a></h4>
                    <p><strong>Author:
                    Jamie                    | Date: Wednesday, February 22, 2012 |
                    No Comments                    </strong></p>
                        <p>On one of the coldest day of the year Ivor shows how to climb the Endurance Wind turbine tower. &nbsp;</p>
                        <p class = "meta"><strong>Filed under:
                    <a href="http://www.naturalgen.co.uk/category/wind-power/" title="View all posts in Wind Power" rel="category tag">Wind Power</a>                    |
                                        </strong></p>
                    
                    <a href = "http://www.naturalgen.co.uk/2010/12/how-to-climb-an-endurance-tower/"><img class = "readmore-button" src="http://www.naturalgen.co.uk/images/elements/common/readmore-button.png" width="94" height="35" /></a>
						</div>
					  						<div class = "post"><h4 class = "posttitle"><a href="http://www.naturalgen.co.uk/2010/12/you-never-forget-your-first/">
                    You never forget your first&#8230;                    </a></h4>
                    <p><strong>Author:
                    Jamie                    | Date: Wednesday, February 22, 2012 |
                    No Comments                    </strong></p>
                        <p>Having successfully completed his National Access and Rescue Centre training in Working at Height and Rescue Training &#8211; Wind Turbines,  Magnus one of our highly skilled technicians climbs up and works on an Endurance 50kW turbine in Bradworthy for the first time. Servicing &hellip;</p>
                        <p class = "meta"><strong>Filed under:
                    <a href="http://www.naturalgen.co.uk/category/news/national-generation/" title="View all posts in Natural Generation" rel="category tag">Natural Generation</a>,<a href="http://www.naturalgen.co.uk/category/news/" title="View all posts in News" rel="category tag">News</a>,<a href="http://www.naturalgen.co.uk/category/wind-power/" title="View all posts in Wind Power" rel="category tag">Wind Power</a>                    |
                                        </strong></p>
                    
                    <a href = "http://www.naturalgen.co.uk/2010/12/you-never-forget-your-first/"><img class = "readmore-button" src="http://www.naturalgen.co.uk/images/elements/common/readmore-button.png" width="94" height="35" /></a>
						</div>
					                    
                                                    </div>
                <div id = "pagenav">
                                  </div>
                              </div>
            </div>
    <div id = "footer">
              <div class = "inner">
        <p>All content &copy; Natural Generation  | <a href = "http://www.sixtytwo.co.uk" target = "_new">Website by Sixty Two Design Newquay</a></p>

<!--
<ul class = "mainmenu">
	<li class = "first"><a href = "">Home</a></li>
    <li><a href = "">Wind Turbines</a></li>
    <li><a href = "">Solar Hot Water</a></li>
    <li><a href = "">Solar Photovoltaic</a></li>
    <li><a href = "">Latest News</a></li>
    <li><a href = "">Useful Links</a></li>
    <li class = "last"><a href = "">Contact Us</a></li>
</ul>

-->

<ul class = "mainmenu">
	<li class="page_item page-item-43 current_page_item"><a href="http://www.naturalgen.co.uk/" title="Home">Home</a></li>
<li class="page_item page-item-992"><a href="http://www.naturalgen.co.uk/feed-in-tariff-calculator/" title="Feed in Tariff Calculator">Feed in Tariff Calculator</a></li>
<li class="page_item page-item-1183"><a href="http://www.naturalgen.co.uk/thank-you-for-contacting-us/" title="Thank you for contacting us&#8230;">Thank you for contacting us&#8230;</a></li>
<li class="page_item page-item-6"><a href="http://www.naturalgen.co.uk/news/" title="News">News</a></li>
<li class="page_item page-item-596"><a href="http://www.naturalgen.co.uk/feed-in-tarrif/" title="Feed in Tariff">Feed in Tariff</a></li>
<li class="page_item page-item-14"><a href="http://www.naturalgen.co.uk/solar-hot-water/" title="Solar Hot Water">Solar Hot Water</a></li>
<li class="page_item page-item-12"><a href="http://www.naturalgen.co.uk/wind-turbines-2/" title="Wind Turbines">Wind Turbines</a></li>
<li class="page_item page-item-16"><a href="http://www.naturalgen.co.uk/solar-photovoltaic/" title="Solar PV">Solar PV</a></li>
<li class="page_item page-item-22"><a href="http://www.naturalgen.co.uk/faqs/" title="FAQs">FAQs</a></li>
<li class="page_item page-item-25"><a href="http://www.naturalgen.co.uk/useful-links/" title="Links">Links</a></li>
<li class="page_item page-item-27"><a href="http://www.naturalgen.co.uk/contact-us/" title="Contact">Contact</a></li>
</ul>
<ul class = "logos">
	<li><a href = "http://www.microgenerationcertification.org//" target = "_new"><img src="http://www.naturalgen.co.uk/images/elements/footer/logos/mcs-logo.jpg" /></a></li>

	<li><a href = "http://www.r-e-a.net/" target = "_new"><img src="http://www.naturalgen.co.uk/images/elements/footer/logos/rea-logo-1.gif" /></a></li>
    <li><a href = "http://www.r-e-a.net/members/natural_generation_ltd" target = "_new"><img src="http://www.naturalgen.co.uk/images/elements/footer/logos/rea-logo-2.gif" /></a></li>
    <li><a href = "http://www.napit.org.uk/defaultHome.asp" target = "_new"><img src="http://www.naturalgen.co.uk/images/elements/footer/logos/napit-logo.gif" /></a></li>
     <li><a href = "http://www.chas.gov.uk/" target = "_new"><img src="http://www.naturalgen.co.uk/images/elements/footer/logos/chas-logo.gif" /></a></li>
</ul>

<script type="text/javascript">
 
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-19570103-1']);
  _gaq.push(['_trackPageview']);
 
  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
 
</script>      </div>
              <script type='text/javascript' src='http://www.naturalgen.co.uk/wp-content/plugins/contact-form-7/jquery.form.js?ver=2.47'></script>
<script type='text/javascript' src='http://www.naturalgen.co.uk/wp-content/plugins/contact-form-7/scripts.js?ver=2.4.1'></script>

<!-- Wordbooker code revision : 1.8.15.r00 -->
            </div>
  </div>
        </div>
        
                
</body>
</html>

