function age_verified(){
	var body = document.getElementsByTagName('body')[0];
	var footer = document.createElement('ul');
	var link_qs = parseInt(Math.round(new Date().getTime()/1000),10);
	
	footer.id = 'footer';
	footer.innerHTML  = '<li class="first"><h5>The Patr&oacute;n Spirits Company</h5><a id="spirits" href="http://www.patronspirits.com?lv=' +link_qs+ '"><img src="images/logo_patron.gif" width="82" height="14" alt=""></a></li>';
	footer.innerHTML += '<li><a id="terms" href="terms_conditions.html">Terms &amp; Conditions</a></li>';
	footer.innerHTML += '<li><a id="privacy" href="privacy_policy.html">Privacy Policy</a></li>';
	footer.innerHTML += '<li><a id="press" href="http://www.patronspirits.com/pressroom/">Press</a></li>';
	footer.innerHTML += '<li><a id="contact" href="http://www.patronspirits.com/?lv=' +link_qs+ '#/contact/">Contact</a></li>';
	footer.innerHTML += '<li class="last"><a id="recipes" href="pdf/Pyrat_Recipes.pdf">Get All Recipes</a></li>';
	
	body.appendChild(footer);
	
	var copyright = document.createElement('div');
	copyright.id = 'copyright';
	copyright.innerHTML = '&copy; The Patr&oacute;n Spirits Company, Las Vegas, NV. 40% Alc./Vol. Be enlightened. Drink responsibly.'
	body.appendChild(copyright);

    document.getElementById('spirits').onclick = function(){window.open(this.href,'spirits');return false;}
	document.getElementById('terms').onclick = function(){window.open(this.href,'terms');return false;}
	document.getElementById('privacy').onclick = function(){window.open(this.href,'privacy');return false;}
	document.getElementById('press').onclick = function(){window.open(this.href,'press_room','width=600,scrollbars=yes');return false;}
	document.getElementById('contact').onclick = function(){window.open(this.href,'contact');return false;}
	document.getElementById('recipes').onclick = function(){window.open(this.href,'recipes');return false;}
}2
