//JS for Jagtap Nursery

function display_header() {
	document.write('<div id="header-bg-box"><!-- Start of Header -->');
	document.write('<div id="header-box">');
	document.write('<img src="images/jagtap-nursery-logo.gif" id="logo-img">');
	document.write('</div>');
	document.write('</div><!-- End of Header -->');
}

function display_navbar() {
	document.write('<div id="navbar-bg-box">');
	document.write('<ul id="navbar">');
	document.write('<li><a href="default.html">home</a>');
	document.write('<li><a href="pune-weather.html">pune weather watch</a>');
	document.write('<li><a href="contact-us.html">contact us</a>');
	document.write('<li><a href="career.html" style="background-color: #f90;">careers</a>');
	document.write('</ul>');
	document.write('</div>');
}

function display_footer() {
	document.write('<div id="footer-bg-box"><!-- Start of footer -->');
	document.write('<div id="footer-box">');
	document.write('<table summary="">');
	document.write('<tr style="vertical-align: top;">');
	document.write('<td style="width: 15%;">');
	document.write('<a href="default.html">Home</a><br><a href="pune-weather.html">Pune weather</a><br><a href="contact-us.html">Contact us</a><br><a href="career.html">Careers</a>');
	document.write('</td>');
	document.write('<td style="width: 15%;">');
	document.write('Garden center<br>Landscape projects<br>Maintenance<br>Contracting<br>Wholesale');
	document.write('</td>');
	document.write('<td style="width: 70%; text-align: right;">');
	document.write('Jagtap Nursery<br>3, Phayre Road, Near Golibar Maidan,<br>Behind S. M. Joshi Hindi High School,');
	document.write('<br>Pune 411 040, India<br>Phone: +91 (20) 2636 3432 | Fax: +91 (20) 2636 3715'); 
	document.write('</td>');
	document.write('<td></td>');
	document.write('</tr>');
	document.write('</table>');
	document.write('</div>');
	document.write('</div><!-- End of footer -->');
}
