﻿$(document).ready(function()
{	
	$("#vNaviUl > li > ul").css("display", "none");

	$("a.vNavHead").click(function()
	{
		HeadElement = $(this).attr("id");
		ChildElement = HeadElement.substring(9);
		if($("#" + ChildElement).is(":visible"))
		{
			$("#" + ChildElement).hide("normal");
		}
		if($("#" + ChildElement).is(":hidden"))
		{
			$("#" + ChildElement).show("normal");
		}
	});
	
	$("a.fancybox").fancybox({
		"cyclic" 		: 	true,
		"titlePosition" 	:   	"inside",
		'transitionIn'		:	'elastic',
		'transitionOut'		:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'		:	true,
		"opacity"		:   	true	
	});

	$("form#Cal_Back > a").click(function()
	{
		$(this).parents("form").submit();
	});
	$("form#Cal_Forward > a").click(function()
	{
		$(this).parents("form").submit();
	});
	$("form#Cal_ToToday > a").click(function()
	{
		$(this).parents("form").submit();
	});


});
