
			function hidecookieNoticeStuff(){ 
				$.cookie('QMCPMHasVisited', 'Yes', { 
					expires: 1000, 
					path: '/' 
				}); 
				$('#cookieNoticeStuff').fadeOut();
			}
			var hasConsented = $.cookie('QMCPMHasVisited')==='Yes';
			if (!hasConsented) {
				$.ajax({
					url: '/design/cookiestuff/index.php',
					success: function(data) {
						$('body').append(data);
						$(document).ready(function(){ 
							setTimeout(function(){ 
								$('#cookieNoticeStuff').fadeIn(); 
								$(document).bind('keydown', function(e) { 
									if (e.which == 27 && $('#cookieNoticeStuff:visible')) { 
										$('#cookieNoticeStuff').fadeOut(); 
									} 
								}); 
							} ,1000); 
						}); 
					}
				});
			}
		