function hide_comment_form()
 {
  document.getElementById('commentform').style.display='none';
  document.getElementById('show_commentform').style.display='block';
 }
 
function show_comment_form()
 {
  document.getElementById('commentform').style.display='block';
  document.getElementById('show_commentform').style.display='none';
  location.hash='commentform';
  document.getElementById('comment_text').focus();
 }
 
function show_comments()
 {
  document.getElementById('commentcontainer').style.display='block';
  document.getElementById('commentlink').style.display='none';
  location.hash='comments';
 }
 
$(document).ready(function(){
        $("#corner").delay(3000).fadeIn('slow');
	$("#corner").hover(function() {
		$("#corner img").toggle();
		$("#cornercontent").stop()
			.animate({
				width: '400px', 
				height: '300px'
			}, 200);
		       	 
		} , function() {
		$("#cornercontent").stop() 
			.animate({
				width: '200px', 
				height: '200px'
			}, 200, function(){$("#corner img").toggle();} );
		$("#cornercontent").fadeOut(0);
	});
});

