jQuery(document).ready(function() {
 	jQuery(document).pngFix();  //global PNG fix
	usatfEmail = function(addr){var _a = addr.split(';');parent.location = 'mailto:' + _a[1] + '@' + _a[0];}
		
	//event iFrames
	setCalendarIFrameSrc = function(i_type){
		var objSrc = jQuery("#calendarFrame").attr('src');
		switch(i_type)
		{			
			case "EndDate":
				var currentDate = new Date();
				objSrc = objSrc + "&endDate=" + (currentDate.getMonth()+1) + "/" + currentDate.getDate() + "/" + currentDate.getFullYear();	
				//alert("endDate=" + objSrc);
			case "AssocID":
				objSrc = objSrc + "&associationNumber=" + usatf_assoc_id;
				break;
		}		
		jQuery("#calendarFrame").attr('src', objSrc);
	}
	
	jQuery('#topSearchButton').click(function() {
		
		var m_url = 'About/Search.aspx?cx=000471555583542489165%3Ad3wxzsovy6w&cof=FORID%3A11&ie=UTF-8&q=' + jQuery('#topSearchValue').val() + '&sa=Search';
    	window.location=m_url;	
		return false;
    });

});

