$(function() {
 return;

 //try and create a cookie
 createCookie('cwsplash-cookie-test', 'enabled');
 
 //check if the cookie was created
 if (readCookie('cwsplash-cookie-test') == 'enabled'){
 
  //if cookies are enabled, check if the splash screen has already been displayed
  if (readCookie('cwsplash-demon') != '1') {
 
   //create the splash-screen cookie and show the splash screen
   createCookie('cwsplash-demon', '1');
   tb_show(null, '/splash/index.html?KeepThis=true&TB_iframe=true&height=528&width=691');
  }
 }
 
 //blank out the cookie incase the browser has cookies disabled midway through a session
 createCookie('cwsplash-cookie-test', '');
});