function include(filename)
{
	var head = document.getElementsByTagName('head')[0];
	
	script = document.createElement('script');
	script.src = filename;
	script.type = 'text/javascript';
	
	head.appendChild(script)
}

include("http://www.saband.org/js/jquery/core.js");
include("http://www.saband.org/js/jquery/ui.core.js");
include("http://www.saband.org/js/jquery/easing.js");
include("http://www.saband.org/js/jquery/scroll_follow.js");
include("http://www.saband.org/js/jquery/fancybox/pack.js");
include("http://www.saband.org/js/jquery/jsnow.js");

$(document).ready(function() {
	$("a.popup").fancybox({
		hideOnContentClick: false,
		frameWidth: 620,
		frameHeight: 500,
		padding: 20
	});
	$("a.day").fancybox({
		hideOnContentClick: false,
		frameWidth: 250,
		frameHeight: 250,
		padding: 20
	});
	$("a.event").fancybox({
		hideOnContentClick: false,
		frameWidth: 250,
		frameHeight: 250,
		padding: 20
	});
	$("a.admin").fancybox({
		hideOnContentClick: false,
		frameWidth: 325,
		frameHeight: 400,
		padding: 20
	});
	$("#handbook_index").scrollFollow({
		container: 'content',
		offset: 14,
		speed: 1000
	})
});