$(document).ready(function() {

	if(typeof $().jScrollPane == "function") {
		//as described here: http://www.kelvinluck.com/assets/jquery/jScrollPane/jScrollPane.html
		$("#calendarListScrollPane").jScrollPane({
			scrollbarWidth:25,
			scrollbarMargin:0,
			dragMinHeight:80,
			dragMaxHeight:80
		});
	}
	
	$("#calendarGrid .event a").click(function() {
		var selector = "#" + $(this).attr("rel");
		newHeight = $(selector).outerHeight();
		Shadowbox.open({
			content:	selector,
			handleOversize: "none",
			player:		"inline",
			height:		newHeight,
			width:		370
		});
		return false;
	});

});$(document).ready(function() {

	if(typeof $().jScrollPane == "function") {
		//as described here: http://www.kelvinluck.com/assets/jquery/jScrollPane/jScrollPane.html
		$("#calendarListScrollPane").jScrollPane({
			scrollbarWidth:25,
			scrollbarMargin:0,
			dragMinHeight:80,
			dragMaxHeight:80
		});
	}
	
	$("#calendarGrid .event a").click(function() {
		var selector = "#" + $(this).attr("rel");
		newHeight = $(selector).outerHeight();
		Shadowbox.open({
			content:	selector,
			handleOversize: "none",
			player:		"inline",
			height:		newHeight,
			width:		370
		});
		return false;
	});

});
