$(document).ready(function(){
    $('#commentListHref').click( function(e){
    	e.preventDefault();
    	if ($("#commentListBody").css("display") == "none") $("#commentListBody").show("slow"); 
    	else $("#commentListBody").hide("slow");
    });
    $('#commentAddHref').click( function(e){
    	e.preventDefault();
    	if ($("#commentForm").css("display") == "none") $("#commentForm").show("slow"); 
    	else $("#commentForm").hide("slow");
    });    
    
    /*if ($.browser.msie)
    {
		var footer = document.getElementById('footer');
		if (footer)
		{
			footer.style.removeExpression('bottom');
			footer.style.bottom = '';
			footer.style.setExpression(
				'top',
				"scrollTop-scrollTop+((document.documentElement)?document.documentElement.scrollHeight:document.body.scrollHeight)-offsetHeight",
				"JavaScript"
			);
		}
    }*/
});
