﻿$(document).ready(function () {

    toggleDetails();
	}
);


var toggleDetails=function(){
	$("div.txl0").each(function () {
        var $this = $(this);
		var $defMore="Подробнее >>>";
		var $defHide="Скрыть дополнительную информацию";
		var $tMore=$this.attr('txl1');
		var $tHide=$this.attr('txl2');
		if($tMore=='') $tMore=$defMore;
		if($tHide=='') $tMore=$defHide;
		
        $this.hide().before("<p><a class='tg' href='JavaScript:void(0)'>"+$tMore+"</a></p>");
        var $link = $this.prev().find('a.tg');
        $link.click(function () {
            $this.toggle();
            if ($this.is(':visible')) {
                $link.text($tHide);
            } else {
                //$link.text('Подробнее >>>');
                $link.text($tMore);
            }
        });
    });
}
