/* ========================================================================= */
/* BE SURE TO COMMENT CODE/IDENTIFY PER PLUGIN CALL                          */
/* ========================================================================= */
$(document).ready(function() {
	//Newsroom Cycle
    $('.banner-slider .slide-holder').cycle({
    	fx:     'fade',
        speed:  600,
        timeout: 8000,
        pager:  '.banner-nav'
    });
    
    //Sidebar Image Cycle
    $('.img-sidebar').cycle({
    	fx:     'fade',
        speed:  200,
        timeout: 0,
        random:  1
    });
    
    //Testimonial Slider
    $('.testimonial-slider').cycle({
    	fx:     'fade',
        speed:  200,
        timeout: 0,
        random:  1,
        before: function(){
        	$(this).parent().find('.current').removeClass();
        },
        after: function(){
        	$(this).addClass('current');
        	var $ht = $(this).height();
        	$(this).parent().css('height', $ht);
        }
    });
    
    $('.txt input, textarea').clearField(); // Clear Field
    
    $('#news-archive ul li:first-child').css('border-top', 'none');
    $('.newsletter-list li:first-child').css('border-top', 'none');
    $('.page-nav li:last-child').css('border-right', 'none');
});
