function formFocus(theForm, theCurrent, theDesired) {
	if (theForm.value == theCurrent) {
		theForm.value = theDesired;
	}
}

jQuery.noConflict();
jQuery(document).ready(function () {
	jQuery('input[type="text"], textarea').focus(function() {
		formFocus(this, this.defaultValue, '');
	}).blur(function() {
		formFocus(this, '', this.defaultValue);
	});
	jQuery(".msg_body").hide();
	//toggle the componenet with class msg_body
	jQuery(".msg_head").click(function() {
    	jQuery(this).next(".msg_body").slideToggle(600);
	});
});