$(document).ready(function(){
	var x = document.cookie;
	if (document.cookie.indexOf('cookie_check') == -1 && document.cookie.indexOf('PHPSESSID') == -1) {
		window.location = '/static/cookies';
	}
});

