// JavaScript Document - special_window_activation_home.js
// Display Special Event Window and Set Cookie if needed 

    $(document).ready(function(){
            $(".colorbox").colorbox({open:"true", close:"SKIP"});
    });
    var name = "special_window";
    var value = "true";
    if (getCookie(name) != value) {
            setCookie(name,value);
    }
