
function schovat()
{
$("#form").slideToggle(1000).is(":visible");

return false;
}

 $(document).ready(function(){
$('[id^=koment]').hide(); 
$('[id^=form]').hide();
})

function schovatKoment(x)
{     
$('#koment' + x).slideToggle(1000).is(":visible")
return false;
}

$(function() {
        // open in new window
        $('a[rel*=nofollow]').click(function(event){
        	window.open(this.href);
                event.preventDefault();
        });
});


