$(document).ready(function() {
 
	//ACCORDION BUTTON ACTION	
	$('p.question').click(function() {
		$('p.question').removeClass('highlight-color').removeClass('bold');
		$('p.answer').removeClass('highlight-color').slideUp();
		
		$(this).next(':hidden').slideDown().addClass('highlight-color')
			.prev().addClass('highlight-color').addClass('bold');
	});
 
	//HIDE THE DIVS ON PAGE LOAD	
	$("p.answer").hide();
	
	

	
	jQuery.fn.cleardefault = function() {
	    return this.focus(function() {
	        if( this.value == this.defaultValue ) {
	            this.value = "";
	        }
	    }).blur(function() {
	        if( !this.value.length ) {
	            this.value = this.defaultValue;
 	        }
		});
	};
	jQuery("input.clearit, textarea.clearit").cleardefault();

 
});
