$().ready(function() {
    $("ul#rotatingBanners").cycle({
        speed: 1000,
        timeout: 9000,
        fx: 'fade'
    }); // home banner slider
    
    $('.ngg-gallery-thumbnail a').lightBox(); // light box
    
	$("h4.trigger").toggle(function(){
		$(this).addClass("active"); 
		}, function () {
		$(this).removeClass("active");
	});
	
	$("h4.trigger").click(function(){
		$(this).next(".toggle_container").slideToggle("slow");
    }); // banner page accordian
    
    $("#commentForm").validate(); // form validation
});

