// JavaScript Document

function extractPageName(hrefString)
	{	
		var end = (hrefString.indexOf("?") == -1) ? hrefString.length : hrefString.indexOf("?");
        return hrefString.substring(hrefString.lastIndexOf("/")+1, end);
	}

function banner_html(current_page)
	{
		document.write('<div id="Banner" style="visibility:hidden">'+
		               '	<div class="imageElement"><img id="images/branding/title_elysium_1_900x150.jpg" src="images/branding/title_elysium_1_900x150.jpg" class="full" /></div>'+
					   '	<div class="imageElement"><img id="images/branding/title_elysium_2_900x150.jpg" src="images/spacer.gif" class="full" /></div>'+
					   '	<div class="imageElement"><img id="images/branding/title_elysium_3_900x150.jpg" src="images/spacer.gif" class="full" /></div>'+
					   '	<div class="imageElement"><img id="images/branding/title_elysium_4_900x150.jpg" src="images/spacer.gif" class="full" /></div>'+
					   '</div>');
window.addEvent('domready', function(){
	setTimeout("startPromotions();",1500);
	setTimeout("startSponsors()",1000);
	setTimeout("startBanner();",500);
});		

	}

function startBanner() 
	{
		var Banner = new gallery($('Banner'), {
			timed: true,
			delay: 7000,
			fadeDuration: 3000,
			showArrows: false,
			showCarousel: false,
			embedLinks: false,
			showInfopane: false
		});
	}

	

function startPromotions() 
	{
		var Promotions = new gallery($('Promotions'), {
			delay: 5000,
			fadeDuration: 1500,
			timed: true,
			showArrows: false,
			showCarousel: false,
			embedLinks: true
		});
	}

function startSponsors() 
	{
		var Sponsors = new gallery($('Sponsors'), {
			delay: 3200,
			fadeDuration: 1500,									 
									 
			timed: true,
			showArrows: false,
			showCarousel: false,
			embedLinks: true,
			showInfopane: false,
			delay: 5000
		});
	}

function footer_html(current_page)
	{
		document.write('© 2008 Elysium - All rights reserved');
	}

function promotion_html(current_page)
	{
		document.write('<table border="0" cellspacing="0" cellpadding="0" width="165">'+
        				'	<tr>'+
		  				'		<td>'+
						'			<div id="Promotions" style="visibility:hidden">'+
						'				<div class="imageElement"><h3>The Shackleton Legend</h3><p>Learn about the great explorer Sir Ernest Henry Shackleton. more...</p><a href="explorers.html" title="go to The Shackleton Legend" class="open"></a><img width="165px" id="images/shackleton/shackleton_165x165.jpg" src="images/shackleton/shackleton_165x165.jpg" class="full" /></div>'+
						'				<div class="imageElement"><h3>The Explorers</h3><p>Meet the expedition explorers. click for more...</p><a href="explorers.html" title="go to explorers" class="open"></a><img width="165px" id="images/wildlife/goran_ehlme_165x165.jpg" src="images/spacer.gif" class="full" /></div>'+						'				<div class="imageElement"><h3>Imaging Technology</h3><p>Exciting new technology will be used. click for more.</p><a href="imaging_technologies.html" title="go to Imaging Technology" class="open"></a><img width="165px" id="images/wildlife/diver_seal_165x165.jpg" class="full" /></div>'+
						'				<div class="imageElement"><h3>Climate Change</h3><p>Global warming is melting the. click for more...</p><a href="climate_change.html" title="go to climate change" class="open"></a><img width="165px" id="images/wildlife/drifting_pinquins_165x165.jpg" src="images/spacer.gif" class="full" /></div>'+

						'			</div>');
		document.write('    	</td>'+
        				'	</tr>'+
				   		'	<tr>'+
                        '    	<td>'+
                		'	    	<img src="images/spacer.gif" alt="" width="20" height="40" border="0" />'+
                   		'		</td>'+
						'	</tr>'+
        				'	<tr>'+
		  				'		<td>'+
						'			<div id="Sponsors" style="visibility:hidden">'+
						'				<div class="imageElement"><a href="sponsors.html" title="see all sponsors" class="open"></a><img id="images/sponsors/lowepro_160x71.jpg" src="images/sponsors/lowepro_160x71.jpg" class="full" /></div>'+
						'				<div class="imageElement"><a href="sponsors.html" title="see all sponsors" class="open"></a><img id="images/sponsors/logo_OG_165x59.jpg" src="images/spacer.gif" class="full" /></div>'+
						'				<div class="imageElement"><a href="sponsors.html" title="see all sponsors" class="open"></a><img id="images/sponsors/logo_ONE_110x110.jpg" src="images/spacer.gif" class="full" /></div>'+
						'			</div>');
		document.write('        </td>'+
        				'	</tr>'+
						'</table>');

	}
