/**
 * @author mika.babcock
 * requires: jquery, jquery.cookie.js
 */

/*===========Vignette Intro Cookie================= */

  var introCookie = $.cookie('__IntroPlayed')!=null?$.cookie('__IntroPlayed'):"";
  var playIntro = false;
  if(introCookie==""){
	playIntro = true;
	introCookie = $.cookie('__IntroPlayed', 'yes');
  }
  // use playIntro to determine whether or not to play intro in flash
  // set flashsvar variable intro=true/false.
