jQuery(document).ready(function(){

	//tabs function (on homepage)
	jQuery("#featured > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);

	//lightbox function
	jQuery('.lightBox img').fadeTo(50, 0.92);
	jQuery('.lightBox img').hover(function(){
		jQuery(this).fadeTo(100, 1);
	}, function() {
		jQuery(this).fadeTo(100, 0.92);
	});

	//prettyPhoto function
	//jQuery("a[rel^='prettyPhoto']").prettyPhoto();

	//validation function
	//jQuery("#replyForm").validate();
	//jQuery("#contactForm").validate();

	// AH toggle function
	jQuery("a.toggle").click(function() {
	    if (jQuery(this).hasClass("show-answer")) {
	      jQuery(this).removeClass("show-answer");
	    } else {
	      jQuery(this).addClass("show-answer");
	    }
	    var content = jQuery(this).attr("href");
	    jQuery(content).slideToggle();
	    return false;
	});
	
});
