var staticSectionOn = 0;

function showStaticSection(name)
{
	staticSectionOn = 1;
	
	$("#infoBlockIn").css("display","none");
	$("#clientBlockIn").css("display","none");
	$("#contactBlockIn").css("display","none");
	
	
	$("#"+name+"BlockIn").fadeIn();
	
	
	$("#blockStaticSection").fadeIn(500, addStaticSectionsEvent);	
}

function addStaticSectionsEvent()
{
	initClickBackgroundStaticSectionsLayer();
}

function initClickBackgroundStaticSectionsLayer()
{
	$("#backgroundStaticSectionLayer").click(function(event)
	{
		hideStaticSections();
		$("#backgroundStaticSectionLayer").unbind("click");
	});
}

function hideStaticSections()
{
	staticSectionOn = 0;
	$("#blockStaticSection").fadeOut(500, function(event)
	{

	}
	);	
}
