function displayHeader(){
document.write('<div id="topsection">')
document.write('	<div class="innertube">')
document.write('		<a href="index.html"><img class="floatleft" src="Images/logo.jpg" /></a>')
document.write('		<div align="right">(866)324-BEDZ(2339)<br />')
document.write('		2751 SW 27th Avenue, Miami, FL</div>')
document.write('	</div>')  
document.write('</div>')
}

function displayMenu(){
document.write('<div id="menu">')
links()
document.write('</div>')
}

function links(){
document.write('<a href="index.html">Home</a>')
document.write('<a href="http://www.ssleepstation.com/store/">Shop</a>')
document.write('<a href="http://www.ssleepstation.com/blog/">Blog</a>')
document.write('<a href="beducation.html">Beducation</a>')
document.write('<a href="benefits.html">Science/Benefits</a>')
document.write('<a href="contact.html">Contact</a>')
}

function displayLargeButtons(){
document.write('<div id="contentwrapper">')
document.write('<div id="contentcolumn">')
document.write('<div class="innertube">SSleepstation Blog<br /><br /><a href="http://www.ssleepstation.com/blog/"><img src="Images/btn.png" /></a></div>')
document.write('</div>')
document.write('</div>')
document.write('<div id="leftcolumn">')
document.write('<div class="innertube">Miami Store Info<br /><br /><a href="index.html"><img src="Images/btn.png" /></a></div>')
document.write('</div>')
document.write('<div id="rightcolumn">')
document.write('<div class="innertube">Online Shopping<br /><br /><a href="http://www.ssleepstation.com/store/"><img src="Images/btn.png" /></a></div>')
document.write('</div>')
}

function printYear(){
var theDate=new Date()
document.write(theDate.getFullYear())
}

function displayFooter(){
document.write('<div id="footer">')
document.write('<hr />')
links()
document.write('<br />')
document.write('<a href="index.html"><img src="Images/feed.png" /></a>')
document.write('<a href="index.html"><img src="Images/twitter.png" /></a>')
document.write('<a href="index.html"><img src="Images/facebook.png" /></a>')
document.write('<a href="index.html"><img src="Images/youtube.png" /></a>')
document.write('<br />')
document.write('Copyright &copy;')
printYear()
document.write(' SSleepstation. All rights reserved.<br />')
document.write('design & programming by <a href="http://www.misselhornmedia.com">misselhornMedia</a>')
document.write('</div>')
}