//from function
$(document).ready(function() {
	$('.searchInput').click(function(){
		$(this).val(''); // hide "search" text when focused.
	});
});

//validation function
jQuery(document).ready(function($){
	$("#replyForm").validate();
	$("#contactForm").validate();
});

//toggle function
$(document).ready(function(){
	$('.toggle p').hide();
	$('.readmore').toggle(function(){
		var $this = $(this);
		$this.parents('.toggle').children('p').show('fast');
		$this.text('[-]');
	}, function(){
		var $this = $(this);
		$this.parents('.toggle').children('p').hide('fast');
		$this.text('[+]');
	});
});
