<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
	<style type="text/css">
		* {
			color: #fffffe;
			font-size: 12px;
			font-family: 'open sans',arial,sans-serif;
		}
		html, body {
			height: 100%;
			/* overflow: hidden; */
			background: url('content-marketing-agency.jpg') center no-repeat #275aa9;
			background-size: cover;
		}
		body {
			margin: 0;
		}
		.spacer {
			height: 15%;
		}
		.holder {
			margin: 0 auto;
			text-align: center;
			display: none;
		}
		img {
			font-weight: bold;
			text-transform: uppercase;
		}
		h2,h1 {
			width: 90%;
			min-width: 400px;
		}
		h2 {
			margin: 10px auto;
			font: 700 23px/26px 'open sans',arial,sans-serif;
		}
		h1 {
			max-width: 700px;
			margin: 0 auto;
			font: 400 36px/40px 'open sans',arial,sans-serif;
		}
		.scriptless {
			margin: 20px 0;
			display: none;
		}
		a:hover {
			color: #ddd;
		}
		.animated {
			display: none;
		}
		.animated img, .animated .text {
			/* display: none; */
		}
		.animated .text {
			width: 100%;
			position: absolute;
			top: 40%;
			font: 400 36px/40px 'open sans',arial,sans-serif;
			text-align: center;
		}
		.animated .logo {
			position: absolute;
			top: 30%;
		}
		.animated .fq.logo {
			left: 10%;
		}
		.animated .s2.logo {
			right: 10%;
		}
		
		/* resize logos, spacer, and text for smaller screens */
		@media (max-width: 900px) {
			.spacer {
				max-height: 10%;
			}
		}
		@media (max-width: 750px) {
			.logo {
				max-width: 175px;
				max-height: 214px;
			}
			h2 {
				font-size: 20px;
				line-height: 24px;
			}
			h1 {
				font-size: 30px;
				line-height: 34px;
			}
		}
		@media (max-width: 500px) {
			.logo {
				max-width: 150px;
				max-height: 183px;
			}
		}
		
		@media (max-height: 600px) {
			.spacer {
				max-height: 10%;
			}
			.logo {
				max-width: 175px;
				max-height: 214px;
			}
		}
		@media (max-height: 500px) {
			.logo {
				width: 150px;
				height: 183px;
			}
		}
	</style>
	
	<!-- fonts -->
	<link href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet">
	
	<script type="text/JavaScript" src="jquery-1.10.2.min.js"></script>
	
</head>
<body>
	<div class="spacer">&nbsp;</div>
	<div class="holder">
		<a href="http://www.square2marketing.com/"><img class="s2 logo" src="SQ2_logo.png" alt="Square 2 Marketing" /></a>
		<h2>Square 2 Marketing Has Acquired&nbsp;FullQuota&nbsp;To&nbsp;Create</h2>
		<h1>The #1 Inbound Marketing Agency Working To Generate 1,000,000&nbsp;Leads</h1>
		<p class="scriptless"><a href="http://www.square2marketing.com/">Click here to learn more!</a></p>
	</div>
	<div class="animated">
		<div class="text">1 + 1 = 1</div>
		<img class="fq logo" src="fq_qlogo.png" alt="FullQuota" />
		<img class="s2 logo" src="SQ2_logo.png" alt="Square 2 Marketing" />
	</div>
	
	<noscript>
		<style type="text/css">
			/* display holder box and link to S2 when script is disabled */
			.holder, .scriptless { display: block; }
		</style>
	</noscript>
	
	<script type="text/JavaScript">
		/*
		| initial call after page loads
			| show first animated elements
				| animate FQ logo to move in from left, S2 logo to move in from right
					| fade out first animated elements, fade in holder box after delay
						| after delay, redirect to S2 site
		*/
		$(window).bind("load", function() {
			$(".animated").show(function() {
				$(".animated .fq.logo").delay(1000).animate({left: "42%"}, 3000, function() {
					$(".animated").fadeOut(1000);
					$(".holder").delay(500).fadeIn(1500, function() {
						setTimeout(function () {
							window.location = "http://www.square2marketing.com/"
    					}, 10000);
					});
				});
				$(".animated .s2.logo").delay(1000).animate({right: "42%"}, 3000, function() {
					
				});
			});
		});
	</script>
</body>
</html>