$(document).ready(function()
{	
    $('.menu-close > ul').hide();
    $('.menu-close > span').live('click',function(){
        $(this).parent('li').children('ul:first').show();
        $(this).parent('li').addClass('menu-open');
        $(this).parent('li').removeClass('menu-close');
    });
    $('.menu-open > span').live('click',function(){
        $(this).parent('li').children('ul:first').hide();
        $(this).parent('li').addClass('menu-close');
        $(this).parent('li').removeClass('menu-open');
    });
    $('.commentReaction').click(function(){
        var id = $(this).attr('class').replace(/.*comment/,'');
        $('#reactionLine').show();
        $('#reactionLine').find('a').attr('href','#comm'+id);
        $('#reactionLine').find('a').html($('#comm'+id).html());
        $('#reactionLine').find('input').val(id);
    });

    var stop = setInterval('timePulse()',1000);
    timePulse();

})



    function timePulse()
    {
        var swdnow = new Date();
        $('#showDateTime').html((swdnow.getDate() < 10 ? '0' : '') + swdnow.getDate() + '.' +
                               (swdnow.getMonth() < 9 ? '0' : '') + (swdnow.getMonth() + 1) + '. ' +
                                swdnow.getFullYear() + ' ' +
                                (swdnow.getHours() < 10 ? '0' : '') + swdnow.getHours() + ':' +
                                (swdnow.getMinutes() < 10 ? '0' : '') + swdnow.getMinutes() + ':' +
                                (swdnow.getSeconds() < 10 ? '0' : '') + swdnow.getSeconds());
    }


