$(document).ready(function() {
    $('#slideshow').before('<div id="nav" class="nav">').cycle({
        fx:     'fade',
        speed:  'slow',
        timeout: 16000,
        pager:  '#nav'
    });
	 $('#caseStudyBox').cycle({
        fx:     'fade',
        speed:  'slow',
        timeout: 0,
        pager:  '#cnav',
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '#cnav li:eq(' + (idx) + ') a';
        }
		});
//controls news bar
	 $('#newsBar').cycle({
			fx:     'fade',
			speed:  'fast',
			timeout: 1200000,
			next:   '#next2',
			prev:   '#prev2'
    	});
});


