// non essential 2

$(document).ready(function(){
  loadScript(videosUrl);

 // check for the cookie

 if($.cookie("mailing-list1") == null)
 {
 $.cookie("mailing-list1", 'seen', { expires: 14 });
  $(".close").click(function()
  {
	  
		
//	$("#mailing_list").fadeOut("slow");
      $("#mailing_list_wrapper").animate({"top": "-520px"}, 700).hide(700);
	

	 
  });
  $(".expand").click(function()
	{
		
		 $("#mailing_list_wrapper").animate({"top": "90px"}, 700);
		
	});
  
  // this is to hide overflow from the black mask on page load
  $("#mailing_list_wrapper").show();
  $("#mailing_list").show();
  $("#mailing_list_wrapper").animate({"top": "40px"}, 700);
 
 }
  //----------
  
$("#mailing_list_signup").hide();
$("#mailing_list_privacy_policy").click(function()
	{
		
		$("#mailing_list_signup").show();
		$("#mailing_list_privacy_policy").attr("disabled", true); 
		
	});
						   });