$(document).ready(function(){
	loadContent("#dialog", "load/testimonials.html");
	$('#dialog').attr(
		{title: Testim_Title()}
	);
	loadContent("#privacy", "load/privacy.html");
	loadContent("#siteby", "load/siteby.html");
});

function Testim_Title() {
	title="Testimonials " +
		'<span style="padding-left: 436px;"></span>' +
		"Go Back ... ";
	return title;
}

function IO_privacy() {
  v = "<p><strong>InsureHoy</strong> respects and honors the importance of privacy. No information submitted to " +
      "<strong>www.InsureHoy.com</strong>, or to its Insurance Underwriters, 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);
}

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