// load google map object in place of static image if this is the information page
$(window).load(function(){
	if ($('body').hasClass('information')) {
		var map = '<iframe width="425" height="350" frameborder="2" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=7800+Camargo+Road+45243&amp;sll=39.1547,-84.381513&amp;sspn=0.013894,0.012252&amp;gl=us&amp;ie=UTF8&amp;ll=39.195212,-84.357662&amp;spn=0.023281,0.036478&amp;z=14&amp;iwloc=A&amp;output=embed"></iframe>';
		$('body.information #map').replaceWith(map);
	}
});