$(function() {
    $("li:first-child").addClass("first");
    $("li:last-child").addClass("last");


    // FOR EACH NAV DROPDOWN FORCE WIDTH TO PARENT WIDTH
    $(".navigation ul").each(function(index) {
	var ParentWidth = $(".navigation ul").parent().outerWidth();
	$(this).width(ParentWidth);
    });


    // REWORK DATE & TIME STAMPS
    $.timeago.settings.allowFuture = true;
    $(".timeago").timeago();
    
    
    $('#Slideshow').nivoSlider({
        effect: 'fade', // Specify sets like: 'fold,fade,sliceDown'
        slices: 15, // For slice animations
        boxCols: 8, // For box animations
        boxRows: 4, // For box animations
        animSpeed: 300, // Slide transition speed
        pauseTime: 5000, // How long each slide will show
        startSlide: 0, // Set starting Slide (0 index)
        directionNav: true, // Next & Prev navigation
        directionNavHide: true, // Only show on hover
        controlNav: false, // 1,2,3... navigation
        captionOpacity: 0.6,
	});

});
