// JavaScript Document

// Featured List Function
	function banners()
	{
		document.write('<p align="center"><a href="http://www.sips.org/" target="_BLANK"><img src="images/home/sipa_logo.gif" width="146" height="59" /></a></p><p align="center"><a href="http://www.usgbc.org/" target="_BLANK"><img src="images/home/leed_logo.gif" width="104" height="103" /></a></p><p align="center"><img src="images/energystar_partner.gif" width="150" height="61" alt="Energy Star Partner" title="Energy Star Partner" /></p><p align="center"><a href="http://www.facebook.com/pages/Peosta-IA/buildevergreen/10150091227755206"><img src="images/facebook.png" width="120" height="45" border="0" title="Join our Facebook Group" /></a></p><p align="center"><a href="http://www.twitter.com/buildevergreen"><img src="images/twitter.png" width="120" height="44" border="0" title="Follow Us on Twitter" /></a></p>');
		/*
		// Generate Random Number from 0 - 3
		var rand_no = Math.random();
		rand_no = Math.floor(rand_no * 1);
		
		// The If Statements to write to document
		
		if ( rand_no == 50 )
		{
			document.write( 'No Products Yet' );
		}
		if ( rand_no == 0 )
		{
			document.write( '<a href="store_magnum7500.html" id="Take a look" target="_self">Magnum 7500 Pellet&frasl;Corn Furnace</a>' );
		}
		if ( rand_no == 2 )
		{
			document.write( '<a href="store.html id="Go to the Store" target="_self">Product #3</a>' );
		}
		if ( rand_no == 3 )
		{
			document.write( '<a href="store.html id="Go to the Store" target="_self">Product #4</a>' );
		}
		if ( rand_no == 4 )
		{
			document.write( '<a href="store.html id="Go to the Store" target="_self">Product #5</a>' );
		}
		if ( rand_no == 5 )
		{
			document.write( '<a href="store.html id="Go to the Store" target="_self">Product #6</a>' );
		}
		if ( rand_no == 6 )
		{
			document.write( '<a href="store.html id="Go to the Store" target="_self">Product #7</a>' );
		}
		if ( rand_no == 7 )
		{
			document.write( '<a href="store.html id="Go to the Store" target="_self">Product #8</a>' );
		}
		*/
	}
// End of Featured List Function