// JavaScript Document

$(document).ready(function(){//EZ Demo Popup link
	$("a.behaviorCalLink").click(function(event) {
		event.preventDefault();
		var bcurl,bcname,bcfeat;
		bcurl="http://animalhumanenm.org/index.php/calendar/";
		bcname="behaviorCal";
		bcfeat="width=825,height=780,resizable=1,scrollbars=1";
		window.open(bcurl,bcname,bcfeat);
	});
	$("a.volunteerCalLink").click(function(event) {
		event.preventDefault();
		var vcurl,vcname,vcfeat;
		vcurl="http://animalhumanenm.org/index.php/vol_calendar/";
		vcname="volunteerCal";
		vcfeat="width=825,height=780,resizable=1,scrollbars=1";
		window.open(vcurl,vcname,vcfeat);
	});
});