$(document).ready(function(){
	loadContent("#privacy", "load/privacy.html");
	loadContent("#siteby", "load/siteby.html");
});

function loadContent(element, sourceUrl) {
  $(element).empty();
  $(element).hide().load(sourceUrl, function() {
    $(this).show().stop();
  });
}

function IO_privacy() {
  v = '<p style="font-size: 11px; padding-top:7px;"><strong>Dr Sergei Shaginyan</strong> respects and honors the importance of privacy. No information submitted to ' +
      "<strong>www.sergei4health.com</strong>, will be shared with a third party " +
      "unless specifically authorized to do so by the visitor or client." +
			'</p>';
  tooltip.show(v);
}

function show_div(div_name) {
  v = document.getElementById(div_name).innerHTML;
  tooltip.show(v);
}

