$(document).ready(function() {
	$(document).mousemove(function(event) {
		if (event.pageY <= 5) {
			var value = $.readCookie('exit');
			if (! value) {
				var cookie = $.setCookie('exit', 'on', { duration: 7 });
				$('#exit-modal').modal({
					opacity: 80,
					position: [20,20],
					overlayCss: { backgroundColor:"#fff" }});
			}
		}
	});
});

