/**********************************************
 Blackbaud Design Custom JavaScript
***********************************************
 Site:			Special Olympics of Southern California
 Author: 		Various
 Updated:		8/11/2010 by Chris Wolf
 BBNC Version:	6.15
 
*********** CHANGE LOG ************************



**********************************************/

/************* global definitions ************/
var bbpage = Sys.WebForms.PageRequestManager.getInstance(); //BBNC
var isEditView = window.location.href.match('edit=');

/************* run page load functions ************/
bbpage.add_pageLoaded(function(){
  siteGlobal();
});





/********** define plugins and functions **********/

// site specific global functions
function siteGlobal()
{

 function donationGiftAttributes(){
	var additionalInfo = $("tr[id$=_trAdditInformation]").parent();
	$("tbody[id$=_tbdyPaymentInfo]").after(additionalInfo);
	$(".DonationFormTable").show();
 } 
 
 function hideSurveyMessage() {

  if ($('.SurveyCompleteMessage').length > 0) {
  	$('.SurveySubTitle').parent().parent().hide();
  }
	
 }

// execute functions 
 donationGiftAttributes();
 hideSurveyMessage();
};


// page specific functions




// If the length of the element's string is 0 then display helper message
function isValidUSZip(zip) {
   return /^\d{5}(-\d{4})?$/.test(zip);
};

function programURL(zip){
  	var i;
  	for (i=0; i < BBNCZIP.length; i++){
    	if (BBNCZIP[i] == zip){
			document.location = BBNCWebPages[i];
			return;
    	}
		else if (BBNCZIP[i] != zip){
        	document.location = '/programs/error';
      	}
  	}
};
function validateZip() {
	var zip = $('#zip').val();
	if(isValidUSZip(zip) == true) {
		programURL(zip);
	}
	else {
		document.location = '/programs/error';
	}
};





// embedded plugins (paste plugin code here or link to separately in layout)


