$(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();
    
    
    // HOMEPAGE SLIDESHOW
    var WidgetID = $(".mizu-slideshow").attr("id");
    WidgetID = WidgetID.replace("-wrapper", "");
    
    
    $("#" + WidgetID + "-controller").jFlow({
	controller: ".controls", // must be class, use . sign
	slideWrapper : "#" + WidgetID + "-controller", // must be id, use # sign
	slides: "#" + WidgetID,  // the div where all your sliding divs are nested in
	selectedWrapper: "selected",  // just pure text, no sign
	width: "600px",  // this is the width for the content-slider
	height: "367px",  // this is the height for the content-slider
	duration: 200,  // time in miliseconds to transition one slide
	prev: ".previous", // must be class, use . sign
	next: ".next", // must be class, use . sign
	auto: true
    });
    
    $("#" + WidgetID + " .slide").click(function() {
	window.location = $(this).find("a").attr("href");
	return false;
    });


});
