$(document).ready(function() {

	// Superfish
	$('ul.sf-menu').superfish({
		animation: {opacity: 'show'},
		delay: 300,
		autoArrows: false
	});
	
	// Table Striping
	$('table:not(#donate) tr:odd').css({'background-color':'#e8e8e8'});
	
	// Contact Form Validation
	$('#form_mailing_list').ajaxForm({
		target: '#output',
		beforeSubmit: function() {
			$('#msg').html('Sending...');
		},
		success: function(rtn) {
			if(rtn=='success') {
				$('#form_mailing_list').resetForm();
				$('#msg').html('<li>Thank you! We will be in touch.</li>').fadeIn('slow').animate({opacity: 1.0}, 3500).fadeOut('slow');
			} else {
				$('#msg').html($('#output #content ul').html())
			}
		}
	});
	
	// open links in external window
	$("a[href^=http]").each(function() {
		if(this.href.indexOf(location.hostname) == -1) {
			$(this).click(function(){window.open(this.href);return false;
		}); 
		}
	});
	
	// open pdf files in new window
	$("a[href$=pdf]").each(function() {
		$(this).attr('target', '_blank');
	});

});