/*
--------------------------------------------------

Acquity Group.com
modal.js

Copyright © 2009 Acquity Group LLC

--------------------------------------------------
*/

$(document).ready(function() {

	// For modal landing pages
	if (parent.location.href != location.href) {
		$('#doctop, #docframe').empty();

	} else {
		// For stand-alone pages

		// Make any links on the background page hard-link to that HTML page instead of triggering the modal on this page, which isn't actually the real homepage.
		$('a.pop').livequery(function() {
			$(this).removeClass("pop").unbind("click");
		});

		$('body').addClass('modal');
		$('#modalwrap').hide();

		// Launch the modal
		$('a.pop').click();

		$('#docframe').next().empty();
	}
});
