//lightbox function
$(document).ready(function() {
	$('.lightBox img').fadeTo(50, 0.92);
	$('.lightBox img').hover(function(){
		$(this).fadeTo(100, 1);
	}, function() {
		$(this).fadeTo(100, 0.92);
	});
});

//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').slideDown('fast');
		$this.parent().css('font-weight', 'bold');
		$this.text('[-]');
	}, function(){
		var $this = $(this);
		$this.parents('.toggle').children('p').slideUp('fast');
		$this.parent().css('font-weight', 'normal');
		$this.text('[+]');
	});
});
