$(document).ready(function()
{	
	$("li.Leistungen > div").css("display", "none");
	
	$("a#ShowAllButton").click(function()
	{
		$("li.Leistungen > div").show("slow");
	});
	$("a#HideAllButton").click(function()
	{
		$("li.Leistungen > div").hide("slow");
	});
	$("a.ShowButton").click(function()
	{
		ShowButton = $(this).attr("id");
		ShowDiv = "Descr" + ShowButton.substring(4);
		HideButton = "Hide" + ShowButton.substring(4);
		$("#" + ShowDiv).show("slow");
		$("#" + HideButton).css("visibility", "visible");
		$("#" + ShowButton).css("visibility", "collapse");
	});
	$("a.HideButton").click(function()
	{
		HideButton = $(this).attr("id");
		HideDiv = "Descr" + HideButton.substring(4);
		ShowButton = "Show" + HideButton.substring(4);
		$("#" + HideDiv).hide("slow");
		$("#" + ShowButton).css("visibility", "visible");
		$("#" + HideButton).css("visibility", "collapse");
	});
	
	/* FancyBox */
	$("a.fancybox").fancybox({
		"cyclic" 		: 	true,
		"titlePosition" :   "inside",
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		"opacity"		:   true	
	});
	$("a:has('img')").fancybox({
		"cyclic" 		: 	true,
		"titlePosition" :   "inside",
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		"opacity"		:   true	
	});
});

