jQuery().ready(function(){
	if (!jQuery.browser.msie) {
		jQuery('#srv-menu').hover(
			function () {
				jQuery(this).animate({opacity: 1}, 1000 );
			}, 
			function () {
				jQuery(this).animate({opacity: 0.48}, 1000 );
			}
		);
	} else {
		jQuery('#srv-menu').hover(
			function () {
				jQuery(this).fadeTo("slow", 1);
			}, 
			function () {
				jQuery(this).fadeTo("slow", 0.48);
			}
		);
	} 
	
	jQuery(".title:first").css({'border-top': '0'});
	jQuery(".title:last").css({'border-bottom': '1px solid #e1e1e1'});


	jQuery("#t0").click(function () {
		jQuery("#c0").toggle("slow");
		jQuery("#t0 .more").toggle("slow");
	});   
	jQuery("#t1").click(function () {
		jQuery("#c1").toggle("slow");
		jQuery("#t1 .more").toggle("slow");
	});

   
	jQuery("#options, #options1").fancybox({
		'zoomOpacity'			: true,
		'overlayShow'			: true,
		'zoomSpeedIn'			: 500,
		'zoomSpeedOut'			: 500,
		'frameHeight'			: 450,	
		'hideOnContentClick': false
	});
	jQuery("#fancyICal a").fancybox({
		'zoomOpacity'			: true,
		'overlayShow'			: true,
		'zoomSpeedIn'			: 500,
		'zoomSpeedOut'			: 500,
		'frameWidth'			: 680,
		'frameHeight'			: 490,	
		'hideOnContentClick': false
	});

});
