/*animate hover for ministries images*/	
$(document).ready(function() {
    $(".imagelink").hover(function(){
        $(this).stop().animate({"opacity": 0.5});
            },function(){
        $(this).stop().animate({"opacity": 1.0});
    });
});

/*slide Toggle for Real life changes*/
$(document).ready(function() {

    $(".hidden-content").hide();

    $(".readmore").click(function() {
        $(this).next(".hidden-content").slideToggle("slow");
    });
});

/*slideshow*/
$(document).ready(function() {
    $('#slideshow').cycle({
		fx: 'fade',
                timeout: 10000, // milliseconds between slide transitions (0 to disable auto advance)
                prev:   '#prev1', 
                next:   '#next1'
	});
        // Pause the cycle
        $('#pauseButton').click(function() {
                $('#slideshow').cycle('pause');
        });

        // Resume the cycle
        $('#resumeButton').click(function() {
                $('#slideshow').cycle('resume');
        });

});


    



