jQuery(function($) { checkCookie_eu(); function checkCookie_eu() { var consent = getCookie_eu("cookies_consent"); if (consent == null || consent == "" || consent == undefined) { // show notification bar $(document).ready(function(){ setTimeout(function () { $("#cookieConsent").fadeIn(200); }, 2500); }); } } function setCookie_eu(c_name,value,exdays) { var exdate = new Date(); exdate.setDate(exdate.getDate() + exdays); var c_value = escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString()); document.cookie = c_name + "=" + c_value+"; path=/"; $('#cookieConsent').fadeOut('200'); } function getCookie_eu(c_name) { var i,x,y,ARRcookies=document.cookie.split(";"); for (i=0;i