/******************************************************

MARCREA JavaScript functions and settings

http://marcrea.de/en/

********************************************************/

/*  enclose in CDATA to allow reliable code validation
//<![CDATA[

/* init everything when document is ready */
$(document).ready(function(){
	/* comments_form sliding */
	$('#comments_form').hide();
	$('a#respond').mouseover(function(event){
	   event.preventDefault();
	   $('#comments_form').slideToggle()
	});
	
});
 
 /* clear input fields when clicked */
function doClear(theText) {
	if (theText.value == theText.defaultValue) {
		theText.value = ""
	}
}
 //]]

