$(document).ready(function() { //COOKIESCRIPT $.cookieCuttr({ //cookieExpires : varCookieExpires, cookieCutter : varCookieCutter, cookieDisable : varCookieDisable, cookieAnalytics : varCookieAnalytics, cookieDeclineButton : varCookieDeclineButton, //cookieCutterDeclineOnly : varCookieCutterDeclineOnly, //cookieResetButton : varCookieResetButton, //cookieDiscreetReset : varCookieExpires, cookieAcceptButton : varCookieAcceptButton, cookieOverlayEnabled : varCookieOverlayEnabled, //cookieNotificationLocationBottom : varCookieNotificationLocationBott, cookieDomain : varCookieDomain, cookieAcceptButtonText : varCookieAcceptButtonText, cookieDeclineButtonText : varCookieDeclineButtonText, //cookieResetButtonText : varCookieResetButtonText, cookieWhatAreLinkText : varCookieWhatAreLinkText, //cookieDiscreetLink : varCookieDiscreetLink, //cookieDiscreetLinkText : varCookieDiscreetLinkText, //cookieDiscreetPosition : varCookieDiscreetPosition, //cookiePolicyPage : varCookiePolicyPage, //cookiePolicyPageMessage : varCookiePolicyPageMessage, cookiePolicyLink : varCookiePolicyLink, cookieWhatAreTheyLink : varCookieWhatAreTheyLink, cookieErrorMessage : varCookieErrorMessage, cookieMessage : varCookieMessage, cookieAnalyticsMessage : varCookieAnalyticsMessage }); //POPUPSCRIPT var align = varPopupAlign; var top = varPopupTop; var width = varPopupWidth; var padding = varPopupPadding; var backgroundColor = varPopupBackgroundColor; var source = varCookiePath+'/'+varPopupSource; var borderColor = varPopupBorderColor; var borderWeight = varPopupBorderWeight; var borderRadius = varPopupBorderRadius; var fadeOutTime = varPopupFadeOutTime; var disableColor = varPopupDisableColor; var disableOpacity = varPopupDisableOpacity; var loadingImage = varCookiePath+'/'+varPopupLoadingImage; //INIT POPUP $('.cc-cookie-info').click(function() { modalPopup(align, top, width, padding, disableColor, disableOpacity, backgroundColor, borderColor, borderWeight, borderRadius, fadeOutTime, source, loadingImage); }); //SLUIT POP BIJ ESCAPE-TOETS $(document).keyup(function(e) { if(e.keyCode == 27) { closePopup(fadeOutTime); } }); });