function get_header(){
	document.getElementById('header').innerHTML = "<img src='images/header.jpg' alt='DCO FINANCE' /></div><div id='top_menu'><a href='index.html' class='menu'>HOME</a><a href='profile.html' class='menu'>PROFILE</a><a href='lending.html' class='menu'>LENDING OPTIONS</a><a href='feedback.html' class='menu'>CLIENT FEEDBACK</a><a href='contact.html' class='menu'>CONTACT US</a><div style='clear: both;'></div>";
}

function get_left_block(){
	if (document.getElementById('left_block') != null){
		document.getElementById('left_block').innerHTML = "<div id='logo'><img src='images/logo.gif' alt='logo' /></div><p><i>At DCO Finance we do our best to provide lending solutions that meet your needs exactly - and we do it with a smile.</p><center><img src='images/smile_icon.jpg' alt='Smile' /></i></center><center><p><i>Contact us now for Great Service, Fast Approval and No Hassles!</p><p>Phone: 0800 322-300 <br />Email: <a href='mailto:info@dcofinance.co.nz'>info@dcofinance.co.nz</a></i></p><center><a href='apply.php' class='apply_button'>&nbsp;</a></center>";
	}
}

function get_footer(){
	document.getElementById('footer').innerHTML = "<a href='index.html'>HOME</a> | <a href='profile.html'>PROFILE</a> | <a href='lending.html'>LENDING OPTIONS</a> |<a href='feedback.html'>CLIENT FEEDBACK</a> | <a href='contact.html'>CONTACT US</a>";
}

window.onload = function(){
	get_header();
	get_left_block();
	get_footer();
}