$(function(){
  $(document).ready(function(){
    if ($.cookie('videoSwitcher') != null) {
      $("div#bg1").hide();
	  $("div#bg2").hide();
	  $("div#header a").html("Show Background Video");
	}
  });

  $("div#header a").click(function(){
    if ($.cookie('videoSwitcher') == null) {
      $("div#bg1").fadeOut();
	  $("div#bg2").fadeOut();
	  $("div#header a").html("Show Background Video");
	  $.cookie('videoSwitcher', 'hide', { expires: 100 } )
	} else {
	  $("div#bg1").fadeIn();
	  $("div#bg2").fadeIn();
	  $("div#header a").html("Hide Background Video");
	  $.cookie('videoSwitcher', null);
	}
  });
});