// wp comments
// hide the comments form and set a toggle to open it

//var c=document.getElementById('commentform');if(c){c.style.display='none'};
document.write('<style type="text/css">#commentform{display:none}</style>');

var h = document.getElementById('respond')
if(h){
	var txt = h.innerHTML
	var a = document.createElement('a')
	a.appendChild(document.createTextNode(txt))
	a.href = '#'
	a.onclick = function(){
		var c = document.getElementById('commentform')
//		if(c){ c.style.display = 'block' }
		if(c){
			c.style.display = (c.style.display!='block') ? 'block' : 'none'; 
		}
		return false;
	}
	h.innerHTML = '';
	h.appendChild(a)	
}

function open_comments(){
	var c = document.getElementById('commentform')
	if(c){ 
		c.style.display = 'block'; 
		var tas = c.getElementsByTagName('textarea');
		if(tas.length>0){
			tas[0].focus(); 
		}
	}	
}