// раскрывающиеся блоки
/*function show(name) {
	var srcElement = document.getElementById(name);
	if(srcElement != null) {
		if(srcElement.style.display == "none") {
			srcElement.style.display= '';
		}
		else {
			srcElement.style.display='none';
		}
	}
}*/

function ShowText(text,link_show) {
	$text = "#" + text;
	$link_show = "#" + link_show;

	$($link_show).click(function() {
		$($text).show('slow');
		$($link_show).hide();
		return false;
	  }); 
}
function CloseText(text,link_show,link_close) {
	$text = "#" + text;
	$link_show = "#" + link_show;
	$link_close = "#" + link_close;

	$($link_close).click(function() {
		$($text).hide('slow');
		$($link_show).show();
		return false;
	  });
}

