// DOMReady
$(document).ready(function() {
    
    var openMenu = function(e) {
        var t = $('div.expand', this);
        if(t.length) {
            t.slideDown(300, function() {
                $(this).addClass('on');
                // t.css('display', 'block');
            });
        }
    };
    
    var closeMenu = function(e) {
        var t = $('div.expand', this);

        if(t.length) {
            t.stop().css({'display': 'none', 'height': 'auto'});
            $(this).removeClass('on');
        }
    };
    
    $('#blocNavigation > ul > li').hover(openMenu, closeMenu);
    
    var toolsMenu = (function() {
    	$('#moreComment a').click(function(e) {
    		e.preventDefault();
			$("#comment-Form").css('display', 'block');
		});
    })();        
});
