/*$(document).ready(function(){
  //tb_show("Welcome!", "?TB_inline=true&inlineId=home_subwrapper&height=180&width=300", null);
);*/

var cookieName = 'teen';

$(document).ready(function(){
  $.preloadCssImages();
  checkCookie();
});

function checkCookie() {
    
    //if (document.cookie.length > 0 && document.cookie.indexOf(cookieName + '=') != -1) {
    // do nothing, cookie already sent
    //} else
    
    {
    // handle jQuery animation
    $("a#headerquotelink").fancybox({
    'hideOnContentClick': true,
    'frameHeight':400,
    'overlayShow':false,
    'centerOnScroll': false, 
    'callbackOnShow': function() { 
    $("#fancy_outer").css({ 
     'top': 280 + $(window).scrollTop() +'px' 
     }); 
   }
  }).trigger('click');

  // set the cookie to show user has already visited
  document.cookie = cookieName + "=1";
    }
}


