var restrictedUrl;
var COOKIE_NAME = 'disclaimer-checked';
$(function(){
  
  $('a.restricted-link').click(function()
    {
      restrictedUrl = $(this).attr('href');
      var cookie = $.cookie(COOKIE_NAME);
      if (cookie)
      {
        return true;
      }
      
      $.fn.colorbox({ href: '#disclaimer-box', inline: true, transition: 'none' });
      return false;
    });
    
  $('.disclaimer-checkbox').live('click', function(){
    if ($(this).is(':checked'))
    {
      $.cookie(COOKIE_NAME, true, { expires: 7, path: '/' });
      window.location.href = restrictedUrl;
    }
  });
  
});