/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
//var domena = "http://localhost:81/katastrofy/";
var domena = location.href.substring(0,location.href.lastIndexOf("/"));

$(document).ready(function(){
    $("#lista a").click(function(){
        var href = $(this).attr("href");
        $.getJSON(domena +'/ajax.php?_action=barcounter',function(data){
           $(location).attr("href",href);
        });
        return false;
    });
    $("input[name='pass1']").attr("value","");
    $("input[name='pass2']").attr("value","");


    $("#hrefformdiscussion").click(function(){
        $(this).hide();
        $(".formdiscussion").show();
    });

});


