//<![CDATA[   
	
	// When the page is ready
	$(document).ready(function(){  
    	$("#noJS_warning").hide();
		
		$("#header_signPetitionNow a").mousedown(function(event){  
			$.scrollTo( $("#signPetitionBanner"), 2000 );
        });
        $("#signPetitionNow").mousedown(function(event){  
			$.scrollTo( $("#signPetitionBanner"), 1500 );
        });

		// Country Selection.  Change State/Zip/Phone based on country
		$("#input_country").change(function(event) { checkCountry() });
		
		// add in continue button
		$(".continueButton").html('<input type="image" src="graphics/ca_freeGao_button_submit.jpg" alt="Submit" /> <a href="javascript:void(0)" id="your_privacy">Your Privacy</a>');
		
		// show security notes on link click
		$("#your_privacy").mousedown(function(event){  
		    $("#your_privacy").hide();
		    $("#submitPetition").after("<div id='security_statement'><h6>Your Privacy</h6><p>Keeping your personal information private and secure is very important to us.  We use strong encryption technology (128bit SSL) to help ensure that all personal data transmitted between your computer and our web server is secure.  The page you're submitting your personal data to will display a padlock image when loaded.</p></div>");
		    $("#security_statement").hide().show("fast");
        }); 
		
        // pass the refnum on to the other bridge pages
        refnumVal = QueryString('refnum');
		$("#signThePetition").before('<input name="refnum" value="' + refnumVal + '" type="hidden">');
        $("#sendEmailsNow").html("<a href='http://www.freegao.com/bg_ChinaAidPetitions_FreeGao-EmailOfficials_375.html?refnum=" + refnumVal + "' class='boldLink'>Send e-mails on Gao's behalf</a>");
        $("#emailOfficialsNow").html("<a href='http://www.freegao.com/bg_ChinaAidPetitions_FreeGao-EmailOfficials_375.html?refnum=" + refnumVal + "' class='boldLink'>Send E-mails</a>");
		$("#contactUSRep_intro").html("<a href='bg_ChinaAidPetitions_FreeGao-EmailUSReps_386.html?refnum=" + refnumVal + "'>TAKE FURTHER ACTION: CONTACT YOUR STATE REPRESENTATIVE</a>");
        $("#contactUSRep").html("<a href='bg_ChinaAidPetitions_FreeGao-EmailUSReps_386.html?refnum=" + refnumVal + "' class='boldLink'>Click here to commit to contacting your U.S. Representative</a>");
		$("#donateNow").html("<a href='https://etools.ncol.com/a/maestro/bg_ChinaAidSO_mbm_376.html?refnum=" + refnumVal + "' class='boldLink'>Submit your secure online contribution</a>");
		
		$("#playTheVideo").mousedown(function(event){  
		    //$("#playTheVideo").hide();
            displayVideo();
        });
        
   		$(".playTheVideo2").mousedown(function(event){  
            displayVideo2();
        });         
   	});
   	
   	function displayVideo() {
		$("#videoWrapper").html("<div id='flashVideo'></div>");
   		var so = new SWFObject("flash/ca_freeGao_movieLoader.swf", "movieLoader", "300", "210", "8", "#ffffff");
		so.write("flashVideo");
	}
    
   	function displayVideo2() {
		$("#videoWrapper2").html("<div id='flashVideo'></div>");
   		var so = new SWFObject("flash/ca_freeGao_movieLoader.swf", "movieLoader", "300", "210", "8", "#ffffff");
		so.write("flashVideo");
	}

 //]]>