// JavaScript Document

//Opens Pop-up 
var left = Math.floor( (screen.width - 874) / 2);
var top = Math.floor( (screen.height - 699) / 2);
function popUp(url) {
	newwindow=window.open(url,'name','height=699,width=874,top='+top+',left='+left+',toolbar=0,status=1,scrollbars=0,resizable=0');
	if (window.focus) {newwindow.focus()}
	return false;
}	

// Add to Calendar
$(document).ready(function(){ 
	$('.addToCalendar').hover(function() {
		$('.calendarLinks').toggle();
	});
});
